diff options
author | Micah Anderson <micah@leap.se> | 2014-11-01 10:36:48 -0400 |
---|---|---|
committer | Micah Anderson <micah@leap.se> | 2014-11-01 14:32:15 -0400 |
commit | 5787c97b6f73dacae7f01adeff203287007c381d (patch) | |
tree | cadc2477e296f5665b1326926c10a6263a5b7413 /puppet/modules/site_sshd/manifests | |
parent | 75a79fc46bb4a165f16efd28a341f4f531664584 (diff) |
stop using bad nist curve for ssh host key (#6294)
update port parameter in site_sshd to be an array, otherwise
puppet errors about it being a Fixnum with new sshd module
Change-Id: I854d042edb98817169eef5e758d04d60d3c71dd5
Diffstat (limited to 'puppet/modules/site_sshd/manifests')
-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 9a05b6ed..1da2f1d5 100644 --- a/puppet/modules/site_sshd/manifests/init.pp +++ b/puppet/modules/site_sshd/manifests/init.pp @@ -53,7 +53,7 @@ class site_sshd { ## class { '::sshd': manage_nagios => false, - ports => $ssh['port'], + ports => [ $ssh['port'] ], use_pam => 'yes', hardened_ssl => 'yes', print_motd => 'no', |