summaryrefslogtreecommitdiffstats
path: root/roles/openshift_examples
diff options
context:
space:
mode:
authorScott Dodson <sdodson@redhat.com>2016-09-28 17:06:19 -0400
committerGitHub <noreply@github.com>2016-09-28 17:06:19 -0400
commit7f1a3f99fc39265e39054e5de1a8d6e29f0d63b8 (patch)
treee3c87865a5c6ddc4087cd42d21f33e607226f9af /roles/openshift_examples
parentba824ca4300f5e0c9b81980f9031fffa3618a3b5 (diff)
parent70dd1bb1e94530741d6524eba57166a7457ec7f2 (diff)
downloadopenshift-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.yml4
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