Commit bea2fcd6 by ansible

no message

1 parent bfb6301e
Showing with 7 additions and 0 deletions
...@@ -6,6 +6,13 @@ ...@@ -6,6 +6,13 @@
group: group:
name: ansbile name: ansbile
state: present state: present
- name: Allow 'ansible' group to have passwordless sudo
lineinfile:
dest: /etc/sudoers
state: present
regexp: '^%ansible'
line: '%ansible ALL=(ALL) NOPASSWD: ALL'
validate: 'visudo -cf %s'
- name: New Ansible User - name: New Ansible User
user: user:
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!