summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvarac <varacanero@zeromail.org>2010-07-15 19:45:11 +0200
committervarac <varacanero@zeromail.org>2010-07-15 19:45:11 +0200
commitd439d82c5ac07c46ae839ef5cd8abe0da70ef807 (patch)
treeefbce56596be96754b8918d404e5c14044c1a37f
parent0692e4ae0cc053031eaa8f9b097b90646df737a8 (diff)
service-definition in shared-modules/cron is cron, not crond
-rw-r--r--manifests/linux.pp2
-rw-r--r--manifests/puppetmaster/checklastrun.pp2
2 files changed, 2 insertions, 2 deletions
diff --git a/manifests/linux.pp b/manifests/linux.pp
index 4190b85..c78570f 100644
--- a/manifests/linux.pp
+++ b/manifests/linux.pp
@@ -29,6 +29,6 @@ class puppet::linux inherits puppet::base {
source => [ "puppet://$server/modules/puppet/cron.d/puppetd.${operatingsystem}",
"puppet://$server/modules/puppet/cron.d/puppetd" ],
owner => root, group => 0, mode => 0644,
- notify => service["crond"];
+ notify => service["cron"];
}
}
diff --git a/manifests/puppetmaster/checklastrun.pp b/manifests/puppetmaster/checklastrun.pp
index fdcc096..0c0126d 100644
--- a/manifests/puppetmaster/checklastrun.pp
+++ b/manifests/puppetmaster/checklastrun.pp
@@ -8,6 +8,6 @@ class puppet::puppetmaster::checklastrun {
content => "40 10,22 * * * root /usr/local/bin/puppetlast\n",
require => File["/usr/local/bin/puppetlast"],
owner => root, group => 0, mode => 0644,
- notify => service["crond"];
+ notify => service["cron"];
}
}