diff options
author | Matt Woodson <mwoodson@redhat.com> | 2016-01-18 15:24:28 -0500 |
---|---|---|
committer | Matt Woodson <mwoodson@redhat.com> | 2016-01-18 15:25:54 -0500 |
commit | a1c9b13d81d8c94c7764524809f5419a5d3ff73d (patch) | |
tree | 21a46290cfa22157c84d352d0a4b8aa62d422559 /roles/chrony | |
parent | 9802775b6642d4257b4b2cd9a4e27a4a86bf01d8 (diff) | |
download | openshift-a1c9b13d81d8c94c7764524809f5419a5d3ff73d.tar.gz openshift-a1c9b13d81d8c94c7764524809f5419a5d3ff73d.tar.bz2 openshift-a1c9b13d81d8c94c7764524809f5419a5d3ff73d.tar.xz openshift-a1c9b13d81d8c94c7764524809f5419a5d3ff73d.zip |
added the lib_timedate role
Diffstat (limited to 'roles/chrony')
-rw-r--r-- | roles/chrony/README.md | 4 | ||||
-rw-r--r-- | roles/chrony/meta/main.yml | 2 | ||||
-rw-r--r-- | roles/chrony/templates/chrony.conf.j2 | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/roles/chrony/README.md b/roles/chrony/README.md index 688bec86a..bf15d9669 100644 --- a/roles/chrony/README.md +++ b/roles/chrony/README.md @@ -10,12 +10,12 @@ Requirements Role Variables -------------- -opschrony_ntp_servers: a list of ntp servers to use the chrony.conf file +chrony_ntp_servers: a list of ntp servers to use the chrony.conf file Dependencies ------------ -ops_roles/lib_timedatectl +roles/lib_timedatectl Example Playbook ---------------- diff --git a/roles/chrony/meta/main.yml b/roles/chrony/meta/main.yml index 2c61018ad..85595d7c3 100644 --- a/roles/chrony/meta/main.yml +++ b/roles/chrony/meta/main.yml @@ -15,4 +15,4 @@ galaxy_info: categories: - system dependencies: -- ops_roles/lib_timedatectl +- roles/lib_timedatectl diff --git a/roles/chrony/templates/chrony.conf.j2 b/roles/chrony/templates/chrony.conf.j2 index ab50ce1b1..de43b6364 100644 --- a/roles/chrony/templates/chrony.conf.j2 +++ b/roles/chrony/templates/chrony.conf.j2 @@ -1,6 +1,6 @@ # Use public servers from the pool.ntp.org project. # Please consider joining the pool (http://www.pool.ntp.org/join.html). -{% for server in opschrony_ntp_servers %} +{% for server in chrony_ntp_servers %} server {{ server }} iburst {% endfor %} |