diff options
author | Jeff Geerling <geerlingguy@mac.com> | 2014-03-05 09:48:33 -0600 |
---|---|---|
committer | Jeff Geerling <geerlingguy@mac.com> | 2014-03-05 09:48:33 -0600 |
commit | 2019c99574319713667ed001a24e6f26d686980a (patch) | |
tree | 4b9dac1201b144bee992f4ccfd69cf2a2528d2f5 | |
download | ntp-2019c99574319713667ed001a24e6f26d686980a.tar.gz ntp-2019c99574319713667ed001a24e6f26d686980a.tar.bz2 ntp-2019c99574319713667ed001a24e6f26d686980a.tar.xz ntp-2019c99574319713667ed001a24e6f26d686980a.zip |
Initial commit.
-rw-r--r-- | README.md | 9 | ||||
-rw-r--r-- | tasks/main.yml | 10 | ||||
-rw-r--r-- | vars/main.yml | 2 |
3 files changed, 21 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..2c9116b --- /dev/null +++ b/README.md @@ -0,0 +1,9 @@ +# NTP Ansible Role + +## An Ansible Role by Jeff Geerling + +This Ansible role was created by Jeff Geerling, and will be added to [his GitHub profile](https://github.com/geerlingguy) after more refinement. + +**Please don't make any changes to this role unless they've also been made to the originals.** + +This README.md file will be removed once the roles are adapted to the final versions posted to GitHub. diff --git a/tasks/main.yml b/tasks/main.yml new file mode 100644 index 0000000..7ed08ed --- /dev/null +++ b/tasks/main.yml @@ -0,0 +1,10 @@ +--- +# Date and timezone (NTP). +- name: Set the correct timezone. + file: src=/usr/share/zoneinfo/{{ timezone }} dest=/etc/localtime state=link force=yes + +- name: Install NTP. + yum: name=ntp state=installed + +- name: Ensure NTP is running. + service: name=ntpd state=started enabled=yes diff --git a/vars/main.yml b/vars/main.yml new file mode 100644 index 0000000..424c7ec --- /dev/null +++ b/vars/main.yml @@ -0,0 +1,2 @@ +--- +ntp_timezone: America/Chicago
\ No newline at end of file |