diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2010-01-25 18:59:00 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2010-01-25 18:59:00 -0200 |
commit | 124f2db6ab5c47d4c72499b86f0ed6b9363da025 (patch) | |
tree | 3bef489aac789cfb36b433e2672d743944a24392 | |
parent | 5c0d9d69fdcf724553a570b05b31019948704f88 (diff) | |
download | puppet-cron-124f2db6ab5c47d4c72499b86f0ed6b9363da025.tar.gz puppet-cron-124f2db6ab5c47d4c72499b86f0ed6b9363da025.tar.bz2 |
Minor fixes
-rw-r--r-- | manifests/init.pp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index 7d89b04..3319a62 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -6,7 +6,8 @@ class cron { service{ 'cron': ensure => running, enable => true, - hasstatus => true, + hasstatus => false, + pattern => "/usr/sbin/cron", require => Package['cron'], } } |