diff options
author | Jeff Geerling <geerlingguy@mac.com> | 2014-03-05 09:56:31 -0600 |
---|---|---|
committer | Jeff Geerling <geerlingguy@mac.com> | 2014-03-05 09:56:31 -0600 |
commit | 748800e7f09118e7f0775062eb5c79bac42a77e9 (patch) | |
tree | fe5350b73374f161f9b363f122e7505b9d4ea21d | |
parent | e73859fcec0c3d4b79951bcd3829b8650c809804 (diff) | |
download | ntp-748800e7f09118e7f0775062eb5c79bac42a77e9.tar.gz ntp-748800e7f09118e7f0775062eb5c79bac42a77e9.tar.bz2 ntp-748800e7f09118e7f0775062eb5c79bac42a77e9.tar.xz ntp-748800e7f09118e7f0775062eb5c79bac42a77e9.zip |
Updated 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/. |