ansible icon indicating copy to clipboard operation
ansible copied to clipboard

My ansible playbooks

Results 4 ansible issues
Sort by recently updated
recently updated
newest added

In the oh-my-zsh.yml, you use template to create a file in the conf directory, but then two steps later, you create the conf directory. Shouldn't these two steps be reversed?

The current version didn't work on my machine with Kubuntu 15.10. 64 Bit and the current ansible binary. I got deprecation-warnings because of "sudo" instead of "become" and $user could...

Hi, i could not run the playbook wiith current ansible binary on Kubuntu 15.10. 64 bit because of a deprecation warning for using "sudo" instead of "become" and the variable...

Excellent collection of playbooks. I have a suggestion for [sudo](https://raw.githubusercontent.com/RaymiiOrg/ansible/master/sudo/sudo.yml) playbook. We can use validate with lineinfile module with something like this ``` yaml - lineinfile: dest=/etc/sudoers state=present line='%My_Group ALL=(ALL)...