diff options
-rw-r--r-- | manifests/debian.pp | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/manifests/debian.pp b/manifests/debian.pp index 2927dd2..de5be53 100644 --- a/manifests/debian.pp +++ b/manifests/debian.pp @@ -16,14 +16,15 @@ class puppet::debian inherits puppet::linux { default: { $real_puppet_hasstatus = false } + } - Service[puppet]{ - hasstatus => $real_puppet_hasstatus, - } - - File['/etc/cron.d/puppetd.cron']{ - path => '/etc/cron.d/puppetd', - } + Service[puppet]{ + hasstatus => $real_puppet_hasstatus, + } + + File['/etc/cron.d/puppetd.cron']{ + path => '/etc/cron.d/puppetd', } } + |