summaryrefslogtreecommitdiffstats
path: root/roles/chrony
diff options
context:
space:
mode:
authorMatt Woodson <mwoodson@redhat.com>2016-01-18 15:24:28 -0500
committerMatt Woodson <mwoodson@redhat.com>2016-01-18 15:25:54 -0500
commita1c9b13d81d8c94c7764524809f5419a5d3ff73d (patch)
tree21a46290cfa22157c84d352d0a4b8aa62d422559 /roles/chrony
parent9802775b6642d4257b4b2cd9a4e27a4a86bf01d8 (diff)
downloadopenshift-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.md4
-rw-r--r--roles/chrony/meta/main.yml2
-rw-r--r--roles/chrony/templates/chrony.conf.j22
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 %}