Commit 574b5ebb by ansible

no message

1 parent d0fcc949
Showing with 8 additions and 0 deletions
...@@ -28,3 +28,11 @@ ...@@ -28,3 +28,11 @@
- { uid: 998, name: postgres, crehome: no, system: yes, shell: /bin/bash, path: /home/postgres } - { uid: 998, name: postgres, crehome: no, system: yes, shell: /bin/bash, path: /home/postgres }
- { uid: 1011, name: wso2, crehome: no, system: yes, shell: /bin/bash, path: /home/wso2 } - { uid: 1011, name: wso2, crehome: no, system: yes, shell: /bin/bash, path: /home/wso2 }
- name: Allow 'wildfly' group to have passwordless sudo
lineinfile:
dest: /etc/sudoers
state: present
regexp: '^%wildfly'
line: '%wildfly ALL=(ALL) NOPASSWD: ALL'
validate: 'visudo -cf %s'
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!