diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 40 |
1 files changed, 35 insertions, 5 deletions
@@ -1,9 +1,39 @@ -# NTP Ansible Role +# Ansible Role: NTP -## An Ansible Role by Jeff Geerling +Installs NTP on RHEL/CentOS 6.x. -This Ansible role was created by Jeff Geerling, and will be added to [his GitHub profile](https://github.com/geerlingguy) after more refinement. +## Requirements -**Please don't make any changes to this role unless they've also been made to the originals.** +None. -This README.md file will be removed once the roles are adapted to the final versions posted to GitHub. +## Role Variables + +Available variables are listed below, along with default values (see `vars/main.yml`): + + ntp_timezone: America/Chicago + +Set the timezone for your server. + +## Dependencies + +None. + +## Example Playbook + + - hosts: db-servers + vars_files: + - vars/main.yml + roles: + - { role: geerlingguy.ntp } + +*Inside `vars/main.yml`*: + + ntp_timezone: America/Chicago + +## License + +MIT / BSD + +## Author Information + +This role was created in 2014 by Jeff Geerling (@geerlingguy), author of Ansible for DevOps. You can find out more about the book at http://ansiblefordevops.com/, and learn about the author at http://jeffgeerling.com/. |