diff options
author | Andrew Butcher <abutcher@redhat.com> | 2016-09-27 16:49:38 -0400 |
---|---|---|
committer | Andrew Butcher <abutcher@redhat.com> | 2016-09-28 15:30:42 -0400 |
commit | 37788eb7590babf79bbec52fb29211ada7136878 (patch) | |
tree | a8b497cf7a2b533fdb7727fb397ea016714b509d /roles/openshift_examples | |
parent | 43f52e292afac7bde5e588377e56d9c49574806c (diff) | |
download | openshift-37788eb7590babf79bbec52fb29211ada7136878.tar.gz openshift-37788eb7590babf79bbec52fb29211ada7136878.tar.bz2 openshift-37788eb7590babf79bbec52fb29211ada7136878.tar.xz openshift-37788eb7590babf79bbec52fb29211ada7136878.zip |
Suppress more warnings.
Diffstat (limited to 'roles/openshift_examples')
-rw-r--r-- | roles/openshift_examples/tasks/main.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/roles/openshift_examples/tasks/main.yml b/roles/openshift_examples/tasks/main.yml index 058ad8888..82536e8af 100644 --- a/roles/openshift_examples/tasks/main.yml +++ b/roles/openshift_examples/tasks/main.yml @@ -19,6 +19,10 @@ - name: Create tar of OpenShift examples local_action: command tar -C "{{ role_path }}/files/examples/{{ content_version }}/" -cvf "{{ copy_examples_mktemp.stdout }}/openshift-examples.tar" . + args: + # Disables the following warning: + # Consider using unarchive module rather than running tar + warn: no become: False register: copy_examples_tar |