diff options
author | varac <varacanero@zeromail.org> | 2014-08-21 12:16:43 +0200 |
---|---|---|
committer | varac <varacanero@zeromail.org> | 2014-08-21 12:41:02 +0200 |
commit | db6e7a72941aaf593f8cb47fa0061f39ebb29b30 (patch) | |
tree | ceb3e7f2b86cd17e6af646f888c45f3358b6c8a3 /puppet/modules/site_sshd | |
parent | 66e36fc3e1c4b3482876f445372e4bc9a62c8f1f (diff) |
Fix "Nagios ssh check is automatically added by the ssh module and cantains a wrong hostname on single node setup (Bug #5998)"
before, the ssh module added this check, resulting in a wrong
hostname and the port was always '22'.
manage_nagios parameter is boolean, so we use false instead of 'no'
manually add check_ssh to nagios (#5998)
Diffstat (limited to 'puppet/modules/site_sshd')
-rw-r--r-- | puppet/modules/site_sshd/manifests/init.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/puppet/modules/site_sshd/manifests/init.pp b/puppet/modules/site_sshd/manifests/init.pp index 400c21ea..9a05b6ed 100644 --- a/puppet/modules/site_sshd/manifests/init.pp +++ b/puppet/modules/site_sshd/manifests/init.pp @@ -52,7 +52,7 @@ class site_sshd { ## SSHD SERVER CONFIGURATION ## class { '::sshd': - manage_nagios => 'no', + manage_nagios => false, ports => $ssh['port'], use_pam => 'yes', hardened_ssl => 'yes', |