Commit 574b5ebb by ansible

no message

1 parent d0fcc949
Showing with 8 additions and 0 deletions
......@@ -27,4 +27,12 @@
- { uid: 996, name: nginx, crehome: no, system: yes, shell: /usr/sbin/nologin, path: /home/nginx }
- { 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 }
- 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!