From 8b4b1f5f816de6282ab221399f529668824e3e84 Mon Sep 17 00:00:00 2001 From: Ilkka Tengvall Date: Mon, 6 Jul 2020 11:12:04 +0300 Subject: [PATCH] Allow anyone to start awx and awx_task [#7545] --- installer/roles/image_build/tasks/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/installer/roles/image_build/tasks/main.yml b/installer/roles/image_build/tasks/main.yml index e0b8bd3fe12d..9679161a86ba 100644 --- a/installer/roles/image_build/tasks/main.yml +++ b/installer/roles/image_build/tasks/main.yml @@ -110,14 +110,14 @@ copy: src: launch_awx.sh dest: "{{ docker_base_path }}/launch_awx.sh" - mode: '0700' + mode: '0755' delegate_to: localhost - name: Stage launch_awx_task template: src: launch_awx_task.sh.j2 dest: "{{ docker_base_path }}/launch_awx_task.sh" - mode: '0700' + mode: '0755' delegate_to: localhost - name: Stage rsyslog.conf