diff options
author | Jeff Geerling <geerlingguy@mac.com> | 2014-05-09 09:37:55 -0500 |
---|---|---|
committer | Jeff Geerling <geerlingguy@mac.com> | 2014-05-09 09:37:55 -0500 |
commit | fd9f99697d3f06f636d13a34206202eb26c5ca17 (patch) | |
tree | bf698dddc4436ad54843a5b3577734be8647dd6b /README.md | |
parent | 884da1935c36ab66fabd08c3e0d7d0ce04c522ac (diff) | |
download | ntp-fd9f99697d3f06f636d13a34206202eb26c5ca17.tar.gz ntp-fd9f99697d3f06f636d13a34206202eb26c5ca17.tar.bz2 ntp-fd9f99697d3f06f636d13a34206202eb26c5ca17.tar.xz ntp-fd9f99697d3f06f636d13a34206202eb26c5ca17.zip |
Add ntp_enabled variable and Travis CI test integration.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -1,6 +1,8 @@ # Ansible Role: NTP -Installs NTP on RHEL/CentOS and Debian/Ubuntu. +[![Build Status](https://travis-ci.org/geerlingguy/ansible-role-ntp.svg?branch=master)](https://travis-ci.org/geerlingguy/ansible-role-ntp) + +Installs NTP on RedHat/CentOS and Debian/Ubuntu Linux servers. ## Requirements @@ -10,10 +12,15 @@ None. Available variables are listed below, along with default values (see `vars/main.yml`): + ntp_enabled: true + +Whether to start the ntpd service and enable it at system boot. On many virtual machines that run inside a container (like OpenVZ or VirtualBox), it's recommended you don't run the NTP daemon, since the host itself should be set to synchronize time for all it's child VMs. + ntp_timezone: America/Chicago Set the timezone for your server. + ## Dependencies None. |