An open API service indexing awesome lists of open source software.

https://github.com/ecelis/ansible-playbooks


https://github.com/ecelis/ansible-playbooks

Last synced: 4 months ago
JSON representation

Awesome Lists containing this project

README

          

Ansible playbooks
=================

``bash
ansible-playbook -i hosts [--verbose]
``

Manage only one service

``bash
ansible -i hosts -m -a 'name=
state=' -b
``

To schedule playbooks execution, use crontab.

``bash
crontab -e
# Add the line below
0 19 * * 5 ansible-playbook -i hosts
``