diff options
author | Michael Scherer <misc@mageia.org> | 2010-10-27 16:40:56 +0000 |
---|---|---|
committer | Michael Scherer <misc@mageia.org> | 2010-10-27 16:40:56 +0000 |
commit | bfa4492ba170f1396cfcb9f80b37efce80581ca0 (patch) | |
tree | af431ca9c109197d77f6f19b2f47220aacd5eea3 /modules | |
parent | d7d23683fc0f0c1f74f53e8c3cddb459849ac825 (diff) | |
download | puppet-bfa4492ba170f1396cfcb9f80b37efce80581ca0.tar puppet-bfa4492ba170f1396cfcb9f80b37efce80581ca0.tar.gz puppet-bfa4492ba170f1396cfcb9f80b37efce80581ca0.tar.bz2 puppet-bfa4492ba170f1396cfcb9f80b37efce80581ca0.tar.xz puppet-bfa4492ba170f1396cfcb9f80b37efce80581ca0.zip |
- subtle fix for puppet on 2010.0, that will use service rather the initscript ( on krampouezh )
Diffstat (limited to 'modules')
-rw-r--r-- | modules/ntp/manifests/init.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/ntp/manifests/init.pp b/modules/ntp/manifests/init.pp index 96f9d03a..3f9ecc14 100644 --- a/modules/ntp/manifests/init.pp +++ b/modules/ntp/manifests/init.pp @@ -4,7 +4,7 @@ class ntp { ensure => installed } - service { ntp: + service { ntpd: ensure => running, path => "/etc/init.d/ntpd", subscribe => [ Package["ntp"], File["ntp.conf"] ] |