summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authorMicah Anderson <micah@riseup.net>2011-01-11 01:24:22 -0500
committerMicah Anderson <micah@riseup.net>2011-01-11 01:24:22 -0500
commitefda1e72f9649761dd85d056ee4decae711249fa (patch)
tree54d76c7b8a30818e031253f6f324399af086dd3f /manifests
parentb4e567041e725c9550947dc4599d51b53b40d6a0 (diff)
fix misplaced closing curly brace for case statement
Diffstat (limited to 'manifests')
-rw-r--r--manifests/debian.pp15
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',
}
}
+