diff options
author | Jerome Charaoui <jcharaoui@cmaisonneuve.qc.ca> | 2010-05-12 17:09:17 -0400 |
---|---|---|
committer | Jerome Charaoui <jcharaoui@cmaisonneuve.qc.ca> | 2010-05-12 17:09:17 -0400 |
commit | 834f6a89287a2d26e20fe57946fe0bf31909daa1 (patch) | |
tree | b9e171505e51c9232965249f8bd240bf7ef2be40 | |
parent | 04f62c810f14599fb935dee962689b2727d54c36 (diff) |
correct typo (do we really need to notify cron?)
-rw-r--r-- | manifests/linux.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/linux.pp b/manifests/linux.pp index f367f83..ebbedcb 100644 --- a/manifests/linux.pp +++ b/manifests/linux.pp @@ -22,6 +22,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["cron"]; + notify => Service['cron']; } } |