diff options
author | mh <mh@immerda.ch> | 2012-06-10 19:38:29 -0300 |
---|---|---|
committer | mh <mh@immerda.ch> | 2012-06-10 19:38:29 -0300 |
commit | aa345cb8f784ce5441367db7c4782000d80d365b (patch) | |
tree | bff9b28082d9bc9a0ae5ed5247e5488f5ba7e395 /manifests/cron | |
parent | a81d6c371eef25a505e16cb89cb6c7e5a124e7fc (diff) |
we support now also 2.7 - 0.24 should not anymore be around
Diffstat (limited to 'manifests/cron')
-rw-r--r-- | manifests/cron/base.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/cron/base.pp b/manifests/cron/base.pp index e12b5eb..e012731 100644 --- a/manifests/cron/base.pp +++ b/manifests/cron/base.pp @@ -27,7 +27,7 @@ class puppet::cron::base inherits puppet::base { if $puppet::cron::stop_service == true { $puppet_majorversion = regsubst($::puppetversion,'^(\d+\.\d+).*$','\1') - if $puppet_majorversion == '2.6' { + if $puppet_majorversion != '0.25' { Service['puppet']{ ensure => stopped, } |