├── .gitignore ├── LICENSE ├── README.md ├── Vagrantfile ├── ansible-sudoers.yml ├── defaults └── main.yml ├── meta └── main.yml ├── tasks └── main.yml └── templates └── sudoers.d.j2 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knopki/ansible-sudoers/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knopki/ansible-sudoers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knopki/ansible-sudoers/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knopki/ansible-sudoers/HEAD/Vagrantfile -------------------------------------------------------------------------------- /ansible-sudoers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knopki/ansible-sudoers/HEAD/ansible-sudoers.yml -------------------------------------------------------------------------------- /defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knopki/ansible-sudoers/HEAD/defaults/main.yml -------------------------------------------------------------------------------- /meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knopki/ansible-sudoers/HEAD/meta/main.yml -------------------------------------------------------------------------------- /tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knopki/ansible-sudoers/HEAD/tasks/main.yml -------------------------------------------------------------------------------- /templates/sudoers.d.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knopki/ansible-sudoers/HEAD/templates/sudoers.d.j2 --------------------------------------------------------------------------------