Skip to content

Commit

Permalink
Allow anyone to start awx and awx_task [ansible#7545]
Browse files Browse the repository at this point in the history
  • Loading branch information
ikke-t committed Jul 6, 2020
1 parent a74fbd6 commit 1f7c3d0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions installer/roles/image_build/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions installer/roles/image_build/templates/Dockerfile.j2
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,7 @@ RUN for dir in \
RUN chmod u+s /usr/bin/bwrap ; \
chgrp -R root ${COLLECTION_BASE} ; \
chmod -R g+rw ${COLLECTION_BASE}
RUN chmod ugo+rx /usr/bin/launch_awx.sh /usr/bin/launch_awx_task.sh;

{% if build_dev|bool %}
RUN for dir in \
Expand Down

0 comments on commit 1f7c3d0

Please sign in to comment.