Convert sudo to a role so we can include it before roles/plays that use sudo.

This commit is contained in:
Kevin Fenzi 2014-06-14 20:58:52 +00:00
parent 7ade030063
commit ef4a44c44c
45 changed files with 46 additions and 44 deletions

View file

@ -1,35 +0,0 @@
---
#
# This task sets up /etc/sudoers.d/fedora on a machine.
#
#
# Put in place the default sysadmin-main sudoers file.
#
- name: setup /etc/sudoers.d/sysadmin-main
copy: src="{{ private }}/files/sudo/sysadmin-main" dest=/etc/sudoers.d/ owner=root group=root mode=0600
when: sudoers_main is not defined
tags:
- config
#
# Put in place the default sysadmin-main sudoers file. (nopasswd edition)
#
- name: setup /etc/sudoers.d/sysadmin-main (nopasswd)
copy: src="{{ private }}/files/sudo/sysadmin-main-nopasswd" dest=/etc/sudoers.d/ owner=root group=root mode=0600
when: sudoers_main is defined and sudoers_main == 'nopasswd'
tags:
- config
#
# This will move a /etc/sudoers.d/ file in place
#
- name: setup /etc/sudoers.d/sudoer file for client use
action: copy src={{ item }} dest=/etc/sudoers.d/ owner=root group=root mode=0600
with_first_found:
- files:
- "{{ sudoers }}"
- "{{ private }}/files/sudo/{{ ansible_fqdn }}-sudoers"
- "{{ private }}/files/sudo/{{ ansible_hostname }}-sudoers"
- "{{ private }}/files/sudo/{{ ansible_domain }}-sudoers"
skip: true
tags:
- config