diff options
author | Michael Scherer <misc@mageia.org> | 2012-03-19 19:44:31 +0000 |
---|---|---|
committer | Michael Scherer <misc@mageia.org> | 2012-03-19 19:44:31 +0000 |
commit | 05647a6388ff80acc4b0ca1c55ad281d2bf725a2 (patch) | |
tree | 547d9971794081dff7d43dddc92da1de992ed904 /modules/ntp/manifests | |
parent | 047463ce79355273368e3a7ff79ee31a50141bc7 (diff) | |
download | puppet-05647a6388ff80acc4b0ca1c55ad281d2bf725a2.tar puppet-05647a6388ff80acc4b0ca1c55ad281d2bf725a2.tar.gz puppet-05647a6388ff80acc4b0ca1c55ad281d2bf725a2.tar.bz2 puppet-05647a6388ff80acc4b0ca1c55ad281d2bf725a2.tar.xz puppet-05647a6388ff80acc4b0ca1c55ad281d2bf725a2.zip |
small cleanup of the module
Diffstat (limited to 'modules/ntp/manifests')
-rw-r--r-- | modules/ntp/manifests/init.pp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/modules/ntp/manifests/init.pp b/modules/ntp/manifests/init.pp index b31d0567..a647925f 100644 --- a/modules/ntp/manifests/init.pp +++ b/modules/ntp/manifests/init.pp @@ -1,12 +1,12 @@ class ntp { - package { ntp: } + package { 'ntp': } - service { ntpd: - subscribe => [Package["ntp"], File["/etc/ntp.conf"]], + service { 'ntpd': + subscribe => [Package['ntp'], File['/etc/ntp.conf']], } - file { "/etc/ntp.conf": - require => Package["ntp"], - content => template("ntp/ntp.conf"), + file { '/etc/ntp.conf': + require => Package['ntp'], + content => template('ntp/ntp.conf'), } } |