diff options
author | Gabriel Filion <lelutin@gmail.com> | 2011-07-16 23:49:11 -0400 |
---|---|---|
committer | Gabriel Filion <lelutin@gmail.com> | 2011-07-16 23:49:11 -0400 |
commit | 6615426a49e6adb0a58ade0b55165888dab65637 (patch) | |
tree | 0cd208871f112f4dad7d78d0ce603a31c5b15457 | |
parent | a5312442b6426951d4f6fa0c89128f4be5d93a5d (diff) | |
download | puppet-sshd-6615426a49e6adb0a58ade0b55165888dab65637.tar.gz puppet-sshd-6615426a49e6adb0a58ade0b55165888dab65637.tar.bz2 |
Clean out $ssh_use_strong_ciphers
A tentative option from rhatto using the variable named
$ssh_use_strong_ciphers still has two lines in init.pp
Since the same functionality is provided by the variable
$ssh_hardened_ssl that was merged in the shared repository, rhatto
removed his feature. But there are still two lines left, so simply
remove them.
Signed-off-by: Gabriel Filion <lelutin@gmail.com>
-rw-r--r-- | manifests/init.pp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index af25e9e..66b7262 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -98,9 +98,6 @@ class sshd { case $sshd_shared_ip { '': { $sshd_shared_ip = "no" } } - case $sshd_use_strong_ciphers { - '': { $sshd_use_strong_ciphers = "no" } - } include sshd::client |