diff options
author | Scott Dodson <sdodson@redhat.com> | 2016-09-28 17:06:19 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-28 17:06:19 -0400 |
commit | 7f1a3f99fc39265e39054e5de1a8d6e29f0d63b8 (patch) | |
tree | e3c87865a5c6ddc4087cd42d21f33e607226f9af /roles/openshift_examples | |
parent | ba824ca4300f5e0c9b81980f9031fffa3618a3b5 (diff) | |
parent | 70dd1bb1e94530741d6524eba57166a7457ec7f2 (diff) | |
download | openshift-7f1a3f99fc39265e39054e5de1a8d6e29f0d63b8.tar.gz openshift-7f1a3f99fc39265e39054e5de1a8d6e29f0d63b8.tar.bz2 openshift-7f1a3f99fc39265e39054e5de1a8d6e29f0d63b8.tar.xz openshift-7f1a3f99fc39265e39054e5de1a8d6e29f0d63b8.zip |
Merge pull request #2518 from abutcher/quiet-time
Reduce warning output
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 |