summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2023-04-05 16:41:12 +0200
committerHugo Hörnquist <hugo@lysator.liu.se>2023-04-05 16:41:12 +0200
commit153d8c624745df929a575b709d532e653b39d9b3 (patch)
tree8bd9e0b5f4b8d6689f9f5c077bf0094576678660
parentFix include in wine::archlinux. (diff)
downloadprofiles-153d8c624745df929a575b709d532e653b39d9b3.tar.gz
profiles-153d8c624745df929a575b709d532e653b39d9b3.tar.xz
Add ntp profile.
-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,
+ }
+}