summaryrefslogtreecommitdiff
path: root/manifests/cron/base.pp
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2010-08-06 19:36:40 +0200
committermh <mh@immerda.ch>2010-08-06 19:36:40 +0200
commit7d904841c15873db9ac1745f659d8464fd45f41a (patch)
tree991567a2557fa59b6502d2c0bcf87f6c786c5c34 /manifests/cron/base.pp
parent6bd681ab05072964efc95ecfe2816e371e45a862 (diff)
codestyle - whitespace
Only code style and whitespace formatting issues. Everything should no be in ligne.
Diffstat (limited to 'manifests/cron/base.pp')
-rw-r--r--manifests/cron/base.pp32
1 files changed, 16 insertions, 16 deletions
diff --git a/manifests/cron/base.pp b/manifests/cron/base.pp
index 6688c5e..2289a3c 100644
--- a/manifests/cron/base.pp
+++ b/manifests/cron/base.pp
@@ -1,23 +1,23 @@
# manifests/cron/base.pp
class puppet::cron::base inherits puppet::base {
- Service['puppet']{
- enable => false,
- }
+ Service['puppet']{
+ enable => false,
+ }
- case $operatingsystem {
- debian,openbsd,ubuntu: {
- #it's already disabled
- }
- default: {
- Service['puppet']{
- hasstatus => false,
- }
- }
+ case $operatingsystem {
+ debian,openbsd,ubuntu: {
+ #it's already disabled
}
- exec{'stop_puppet':
- command => 'kill `cat /var/run/puppet/puppetd.pid`',
- onlyif => 'test -f /var/run/puppet/puppetd.pid',
- require => Service['puppet'],
+ default: {
+ Service['puppet']{
+ hasstatus => false,
+ }
}
+ }
+ exec{'stop_puppet':
+ command => 'kill `cat /var/run/puppet/puppetd.pid`',
+ onlyif => 'test -f /var/run/puppet/puppetd.pid',
+ require => Service['puppet'],
+ }
}