diff options
author | Micah Anderson <micah@riseup.net> | 2011-01-11 01:24:22 -0500 |
---|---|---|
committer | Micah Anderson <micah@riseup.net> | 2011-01-11 01:24:22 -0500 |
commit | efda1e72f9649761dd85d056ee4decae711249fa (patch) | |
tree | 54d76c7b8a30818e031253f6f324399af086dd3f | |
parent | b4e567041e725c9550947dc4599d51b53b40d6a0 (diff) |
fix misplaced closing curly brace for case statement
-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', } } + |