From df7f9eb615cf94cb6ba0163c361fc4bdb7956f72 Mon Sep 17 00:00:00 2001
From: Jeff Geerling <geerlingguy@mac.com>
Date: Fri, 17 Jul 2015 21:20:31 -0500
Subject: Fixed documentation and linux distro information.

---
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'README.md')

diff --git a/README.md b/README.md
index 92ac061..49a459f 100644
--- a/README.md
+++ b/README.md
@@ -10,7 +10,7 @@ None.
 
 ## Role Variables
 
-Available variables are listed below, along with default values (see `vars/main.yml`):
+Available variables are listed below, along with default values (see `defaults/main.yml`):
 
     ntp_enabled: true
 
-- 
cgit v1.2.3


From 9c0a3ce4ff0c8bc00dbb8497193c2fc5f015c5aa Mon Sep 17 00:00:00 2001
From: Jeff Geerling <geerlingguy@mac.com>
Date: Thu, 3 Mar 2016 22:45:52 -0600
Subject: NTP configuration cleanup and add documentation for new vars.

---
 README.md | 17 +++++++++++++----
 1 file changed, 13 insertions(+), 4 deletions(-)

(limited to 'README.md')

diff --git a/README.md b/README.md
index 49a459f..0a28255 100644
--- a/README.md
+++ b/README.md
@@ -20,6 +20,17 @@ Whether to start the ntpd service and enable it at system boot. On many virtual
 
 Set the timezone for your server.
 
+    ntp_manage_config: false
+
+Set to true to allow this role to manage the NTP configuration file (`/etc/ntp.conf`).
+
+    ntp_servers:
+     - 0.pool.ntp.org iburst
+     - 1.pool.ntp.org iburst
+     - 2.pool.ntp.org iburst
+     - 3.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`.
 
 ## Dependencies
 
@@ -27,11 +38,9 @@ None.
 
 ## Example Playbook
 
-    - hosts: db-servers
-      vars_files:
-        - vars/main.yml
+    - hosts: all
       roles:
-        - { role: geerlingguy.ntp }
+        - geerlingguy.ntp
 
 *Inside `vars/main.yml`*:
 
-- 
cgit v1.2.3