Ansible for Eric Feldhusen's Personal Use
Checkout the application from GitHub:
$ git clone [email protected]:efeldhusen/ansible.git
$ cd ansible
Dry-run of Ansible playbook
$ ansible-playbook playbook_name.yml --check
Actual run of Ansible playbook
$ ansible-playbook playbook_name.yml
Run a command across machines
$ ansible servers -a "grep '001C7BEEBC9A' /usr/local/nagios/etc/conf.d/modems.cfg" -u joebob
$ cd ansible
$ ansible-galaxy install username.playbook
$ cd ansible
$ ansible-galaxy install geerlingguy.nginx
- Fork it ( https://github.com/efeldhusen/ansible/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request