mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
Wildfly didn't start because of some permission problems. (#718)
This commit is contained in:
@@ -58,19 +58,22 @@
|
||||
copy:
|
||||
src: wildfly.conf
|
||||
dest: '{{ wf_homedir }}/wildfly.conf'
|
||||
mode: "0644"
|
||||
|
||||
- name: Create launcher
|
||||
template:
|
||||
src: launch.sh.j2
|
||||
dest: '{{ wf_homedir }}/bin/launch.sh'
|
||||
mode: "0755"
|
||||
|
||||
- name: Make scripts executable
|
||||
shell: 'chmod +x {{ wf_homedir }}/bin/*.sh'
|
||||
shell: 'chmod +rx {{ wf_homedir }}/bin/*.sh'
|
||||
|
||||
- name: Create service file
|
||||
template:
|
||||
src: wildfly.service.j2
|
||||
dest: '{{ wf_service_file_path }}'
|
||||
mode: "0644"
|
||||
|
||||
- name: Create directories for testing the default deploy_path
|
||||
become: yes
|
||||
|
||||
Reference in New Issue
Block a user