aboutsummaryrefslogtreecommitdiffstats
path: root/modules/puppet
diff options
context:
space:
mode:
authorNicolas Vigier <boklm@mageia.org>2011-08-05 12:48:34 +0000
committerNicolas Vigier <boklm@mageia.org>2011-08-05 12:48:34 +0000
commit0c623441d919e69905166e29262187e1c022ac1b (patch)
treeac01f22190b87a1927d68a114fe4d81af0670b84 /modules/puppet
parent7389a1b01b7abb540648b03a16803acac6f4eb40 (diff)
downloadpuppet-0c623441d919e69905166e29262187e1c022ac1b.tar
puppet-0c623441d919e69905166e29262187e1c022ac1b.tar.gz
puppet-0c623441d919e69905166e29262187e1c022ac1b.tar.bz2
puppet-0c623441d919e69905166e29262187e1c022ac1b.tar.xz
puppet-0c623441d919e69905166e29262187e1c022ac1b.zip
ensure puppet daemon is stopped as we are now using cron
Diffstat (limited to 'modules/puppet')
-rw-r--r--modules/puppet/manifests/init.pp6
1 files changed, 6 insertions, 0 deletions
diff --git a/modules/puppet/manifests/init.pp b/modules/puppet/manifests/init.pp
index 93ba582d..8771353c 100644
--- a/modules/puppet/manifests/init.pp
+++ b/modules/puppet/manifests/init.pp
@@ -21,6 +21,12 @@ class puppet {
minute => fqdn_rand( 60 ),
ensure => present,
}
+
+ service { puppet:
+ ensure => stopped,
+ enable => false,
+ hasstatus => true,
+ }
}
class master inherits client {