diff options
author | Micah <micah@leap.se> | 2016-05-31 13:45:36 -0400 |
---|---|---|
committer | Micah <micah@leap.se> | 2016-06-16 11:09:39 -0400 |
commit | 31c7e54c86622d71c735ef18448d3977a6c59713 (patch) | |
tree | 3eac43eb0359cf340fe6e164680c822c43ce3975 /puppet/modules/site_config | |
parent | 6f4464ec56ad215320107f4603190c11e487f3ca (diff) |
Disable puppet-agent daemon from running.
The agent wakes up every two minutes and tries to connect to the default
server, failing with a certificate warning. We don't use the agent, so
we can safely disable it (#8032)
Change-Id: I707f42b59205993325431aba283552b1b73a0ad1
Diffstat (limited to 'puppet/modules/site_config')
-rw-r--r-- | puppet/modules/site_config/manifests/default.pp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/puppet/modules/site_config/manifests/default.pp b/puppet/modules/site_config/manifests/default.pp index 256de1a1..9bc8c30d 100644 --- a/puppet/modules/site_config/manifests/default.pp +++ b/puppet/modules/site_config/manifests/default.pp @@ -7,8 +7,9 @@ class site_config::default { include site_config::params include site_config::setup - # default class, used by all hosts + service { 'puppet': ensure => stopped } + # default class, used by all hosts include lsb, git # configure sysctl parameters |