diff options
author | Micah <micah@leap.se> | 2016-05-31 13:45:36 -0400 |
---|---|---|
committer | Micah <micah@leap.se> | 2016-05-31 13:45:36 -0400 |
commit | 46af641b65a530a6afc238d554d0b71e5d99f9d5 (patch) | |
tree | 0c6b29b58a192ab733d59d993ab440c04bec7345 /puppet/modules/site_config | |
parent | 66b4c6b5ec6fe2f242020845fe92715ae2cdcc1e (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 |