diff options
author | Jeff Geerling <geerlingguy@mac.com> | 2016-12-27 11:43:29 -0600 |
---|---|---|
committer | Jeff Geerling <geerlingguy@mac.com> | 2016-12-27 11:43:29 -0600 |
commit | 32308cacfb8356fa60f337a3eeb71aff5597b8ef (patch) | |
tree | 9ec51cc850eb96843eac3b3a1643efb226fa4e6d | |
parent | 8f217a49ff730b799e913aeeaa140cffd9fa7f25 (diff) | |
download | ntp-32308cacfb8356fa60f337a3eeb71aff5597b8ef.tar.gz ntp-32308cacfb8356fa60f337a3eeb71aff5597b8ef.tar.bz2 ntp-32308cacfb8356fa60f337a3eeb71aff5597b8ef.tar.xz ntp-32308cacfb8356fa60f337a3eeb71aff5597b8ef.zip |
PR #21 Follow-up: document new vars, fix YAML formatting.
-rw-r--r-- | README.md | 18 | ||||
-rw-r--r-- | defaults/main.yml | 26 |
2 files changed, 24 insertions, 20 deletions
@@ -24,14 +24,24 @@ Set the timezone for your server. Set to true to allow this role to manage the NTP configuration file (`/etc/ntp.conf`). + ntp_area: '' + +Set the [NTP Pool Area](http://support.ntp.org/bin/view/Servers/NTPPoolServers) to use. Defaults to none, which uses the worldwide pool. + ntp_servers: - - 0.pool.ntp.org iburst - - 1.pool.ntp.org iburst - - 2.pool.ntp.org iburst - - 3.pool.ntp.org iburst + - "0{{ ntp_area }}.pool.ntp.org iburst" + - "1{{ ntp_area }}.pool.ntp.org iburst" + - "2{{ ntp_area }}.pool.ntp.org iburst" + - "3{{ ntp_area }}.pool.ntp.org iburst" Specify the NTP servers you'd like to use. Only takes effect if you allow this role to manage NTP's configuration, by setting `ntp_manage_config` to `true`. + ntp_restrict: + - "127.0.0.1" + - "::1" + +Restrict NTP access to these hosts; loopback only, by default. + ## Dependencies None. diff --git a/defaults/main.yml b/defaults/main.yml index 8d4c702..5d18cd7 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -3,22 +3,16 @@ ntp_enabled: true ntp_timezone: Etc/UTC ntp_manage_config: false -### choose ntp server area ### -# http://support.ntp.org/bin/view/Servers/NTPPoolServers -### -# Leave empty for Worldwide Area -# Worldwide: '' -# Asia: '.asia' -# Europe: '.europe' -# North America: '.north-america' -# Oceania: '.oceania' -# South America: '.south-america' + +# NTP server area configuration (leave empty for 'Worldwide'). +# See: http://support.ntp.org/bin/view/Servers/NTPPoolServers ntp_area: '' ntp_servers: - - 0{{ ntp_area }}.pool.ntp.org iburst - - 1{{ ntp_area }}.pool.ntp.org iburst - - 2{{ ntp_area }}.pool.ntp.org iburst - - 3{{ ntp_area }}.pool.ntp.org iburst + - "0{{ ntp_area }}.pool.ntp.org iburst" + - "1{{ ntp_area }}.pool.ntp.org iburst" + - "2{{ ntp_area }}.pool.ntp.org iburst" + - "3{{ ntp_area }}.pool.ntp.org iburst" + ntp_restrict: - - 127.0.0.1 - - ::1 + - "127.0.0.1" + - "::1" |