summaryrefslogtreecommitdiff
path: root/manifests/cron.pp
diff options
context:
space:
mode:
authorGabriel Filion <lelutin@gmail.com>2013-01-02 11:26:56 -0500
committerGabriel Filion <lelutin@gmail.com>2013-01-02 11:26:56 -0500
commit87b8cf7133beb4c9dd6f6e7692d374d302f8ea5a (patch)
tree97c24ea735930366b85cc8d54cdfca044a6fa810 /manifests/cron.pp
parent413b964ec31f9eb6035ecb4c5e38a90f1eee596f (diff)
Make all linux distributions use the same path for the cron file
This simplifies the hierarchy and fixes the problem that going from puppet::cron to puppet under debian doesn't remove the cron file. Signed-off-by: Gabriel Filion <lelutin@gmail.com>
Diffstat (limited to 'manifests/cron.pp')
-rw-r--r--manifests/cron.pp3
1 files changed, 1 insertions, 2 deletions
diff --git a/manifests/cron.pp b/manifests/cron.pp
index 9a632ff..644475e 100644
--- a/manifests/cron.pp
+++ b/manifests/cron.pp
@@ -2,8 +2,7 @@
class puppet::cron inherits puppet {
case $operatingsystem {
- linux: { include puppet::cron::linux }
- debian: { include puppet::cron::debian }
+ linux,debian,ubuntu: { include puppet::cron::linux }
openbsd: { include puppet::cron::openbsd }
freebsd: { include puppet::cron::freebsd }
default: { include puppet::cron::base }