https://github.com/ecelis/ansible-playbooks
https://github.com/ecelis/ansible-playbooks
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ecelis/ansible-playbooks
- Owner: ecelis
- Created: 2019-02-22T19:38:52.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-02-22T23:59:17.000Z (over 7 years ago)
- Last Synced: 2025-10-28T07:38:20.045Z (8 months ago)
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
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
``