summaryrefslogtreecommitdiff
path: root/manifests/cron.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/cron.pp')
-rw-r--r--manifests/cron.pp9
1 files changed, 9 insertions, 0 deletions
diff --git a/manifests/cron.pp b/manifests/cron.pp
new file mode 100644
index 0000000..9bce6a7
--- /dev/null
+++ b/manifests/cron.pp
@@ -0,0 +1,9 @@
+# manifests/cron.pp
+
+class puppet::cron inherits puppet {
+ case $kernel {
+ linux: { include puppet::cron::linux }
+ openbsd: { include puppet::cron::openbsd }
+ default: { include puppet::cron::base }
+ }
+}