diff options
author | Scott Dodson <sdodson@redhat.com> | 2018-01-10 08:10:41 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-10 08:10:41 -0500 |
commit | 19ae452d558d7f04f49d024bf82fcb7221c8fa0d (patch) | |
tree | 6a06bfb124ce15bc26cf97da60a8631e2d0b5069 /roles/openshift_examples/tasks | |
parent | aa155550a651708fcb200746ad78fb0bbf562e94 (diff) | |
parent | 4b06eaf83e137ddeba2ce498e141ad87413761c0 (diff) | |
download | openshift-19ae452d558d7f04f49d024bf82fcb7221c8fa0d.tar.gz openshift-19ae452d558d7f04f49d024bf82fcb7221c8fa0d.tar.bz2 openshift-19ae452d558d7f04f49d024bf82fcb7221c8fa0d.tar.xz openshift-19ae452d558d7f04f49d024bf82fcb7221c8fa0d.zip |
Merge pull request #6674 from mgugino-upstream-stage/remove-becomes2
Remove become statements
Diffstat (limited to 'roles/openshift_examples/tasks')
-rw-r--r-- | roles/openshift_examples/tasks/main.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/roles/openshift_examples/tasks/main.yml b/roles/openshift_examples/tasks/main.yml index ff04cdf9c..7787da4f0 100644 --- a/roles/openshift_examples/tasks/main.yml +++ b/roles/openshift_examples/tasks/main.yml @@ -16,8 +16,8 @@ register: copy_examples_mktemp run_once: True -- name: Create local temp dir for OpenShift examples copy - local_action: command chmod 755 "{{ copy_examples_mktemp.stdout }}" +- name: Chmod local temp dir for OpenShift examples copy + local_action: command chmod 777 "{{ copy_examples_mktemp.stdout }}" run_once: True - name: Create tar of OpenShift examples @@ -27,7 +27,7 @@ # Consider using unarchive module rather than running tar warn: no -- name: Create local temp dir for OpenShift examples copy +- name: Chmod local temp dir for OpenShift examples copy local_action: command chmod 744 "{{ copy_examples_mktemp.stdout }}/openshift-examples.tar" run_once: True |