X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/ea0715b4be41a1d1600bba7a1f5d0b988708579f..d626103e52cc24d2e5e0f4d67bc46be86e0f6ce9:/cookbooks/openssh/recipes/default.rb diff --git a/cookbooks/openssh/recipes/default.rb b/cookbooks/openssh/recipes/default.rb index a8af1dece..b69a86a51 100644 --- a/cookbooks/openssh/recipes/default.rb +++ b/cookbooks/openssh/recipes/default.rb @@ -9,7 +9,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, @@ -24,9 +24,6 @@ package "openssh-client" package "openssh-server" service "ssh" do - if node[:lsb][:release].to_f >= 14.04 - provider Chef::Provider::Service::Upstart - end action [:enable, :start] supports :status => true, :restart => true, :reload => true end @@ -44,8 +41,8 @@ hosts = search(:node, "networking:interfaces").sort_by { |n| n[:hostname] }.coll end keys = { - "rsa" => node[:keys][:ssh][:host_rsa_public], # ~FC039 - "dsa" => node[:keys][:ssh][:host_dsa_public] # ~FC039 + "ssh-rsa" => node[:keys][:ssh][:host_rsa_public], # ~FC039 + "ssh-dss" => node[:keys][:ssh][:host_dsa_public] # ~FC039 } if node[:keys][:ssh][:host_ecdsa_public] # ~FC039 @@ -54,6 +51,10 @@ hosts = search(:node, "networking:interfaces").sort_by { |n| n[:hostname] }.coll keys[ecdsa_type] = node[:keys][:ssh][:host_ecdsa_public] # ~FC039 end + if node[:keys][:ssh][:host_ed25519_public] # ~FC039 + keys["ssh-ed25519"] = node[:keys][:ssh][:host_ed25519_public] # ~FC039 + end + Hash[ :names => names.sort, :addresses => node.ipaddresses.sort, @@ -63,14 +64,14 @@ end template "/etc/ssh/ssh_config" do source "ssh_config.erb" - mode 0644 + mode 0o644 owner "root" group "root" end template "/etc/ssh/ssh_known_hosts" do source "ssh_known_hosts.erb" - mode 0444 + mode 0o444 owner "root" group "root" backup false @@ -84,5 +85,5 @@ firewall_rule "accept-ssh" do source "net" dest "fw" proto "tcp:syn" - dest_ports "ssh" + dest_ports node[:openssh][:port] end