summaryrefslogtreecommitdiff
path: root/manifests/cron
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2014-07-09 23:21:09 +0200
committermh <mh@immerda.ch>2014-07-09 23:21:09 +0200
commit7bd09350025f19c4e2e79bafe6e91896b646a6b9 (patch)
tree45a05337e40c58a15e96e715deac11424296116d /manifests/cron
parent3e9785959978ac9a0beae4827aeae802865c9279 (diff)
get rid off lsb facts
Diffstat (limited to 'manifests/cron')
-rw-r--r--manifests/cron/base.pp3
1 files changed, 1 insertions, 2 deletions
diff --git a/manifests/cron/base.pp b/manifests/cron/base.pp
index e012731..82483df 100644
--- a/manifests/cron/base.pp
+++ b/manifests/cron/base.pp
@@ -2,8 +2,7 @@
class puppet::cron::base inherits puppet::base {
case $::operatingsystem {
- debian: { if $::lsbdistcodename != 'lenny' { $stop_service = true } else { $stop_service = false } }
- openbsd, ubuntu: { $stop_service = false }
+ openbsd: { $stop_service = false }
default: { $stop_service = true }
}