summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--manifests/ntp.pp12
1 files changed, 12 insertions, 0 deletions
diff --git a/manifests/ntp.pp b/manifests/ntp.pp
new file mode 100644
index 0000000..6e61a63
--- /dev/null
+++ b/manifests/ntp.pp
@@ -0,0 +1,12 @@
+# Configures NTP
+class profiles::ntp {
+
+ ensure_packages([
+ 'chrony'
+ ])
+
+ service { 'chronyd':
+ ensure => running,
+ enable => true,
+ }
+}