]> git.openstreetmap.org Git - chef.git/blob - cookbooks/openssh/recipes/default.rb
Remove any legacy DSA host keys
[chef.git] / cookbooks / openssh / recipes / default.rb
1 #
2 # Cookbook:: openssh
3 # Recipe:: default
4 #
5 # Copyright:: 2010, OpenStreetMap Foundation.
6 # Copyright:: 2008-2009, Opscode, Inc.
7 #
8 # Licensed under the Apache License, Version 2.0 (the "License");
9 # you may not use this file except in compliance with the License.
10 # You may obtain a copy of the License at
11 #
12 #     https://www.apache.org/licenses/LICENSE-2.0
13 #
14 # Unless required by applicable law or agreed to in writing, software
15 # distributed under the License is distributed on an "AS IS" BASIS,
16 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 # See the License for the specific language governing permissions and
18 # limitations under the License.
19 #
20
21 include_recipe "networking"
22
23 package "openssh-client"
24 package "openssh-server"
25
26 service "ssh" do
27   action [:enable, :start]
28   supports :status => true, :restart => true, :reload => true
29 end
30
31 file "/etc/ssh/ssh_host_dsa_key" do
32   action :delete
33 end
34
35 file "/etc/ssh/ssh_host_dsa_key.pub" do
36   action :delete
37 end
38
39 hosts = search(:node, "networking:interfaces").sort_by { |n| n[:hostname] }.collect do |node|
40   name = node.name.split(".").first
41
42   names = [name]
43
44   unless node.interfaces(:role => :internal).empty?
45     names.unshift("#{name}.#{node[:networking][:roles][:external][:zone]}.openstreetmap.org")
46   end
47
48   unless node.interfaces(:role => :external).empty?
49     names.unshift("#{name}.openstreetmap.org")
50   end
51
52   keys = {
53     "ssh-rsa" => node[:keys][:ssh][:host_rsa_public]
54   }
55
56   if node[:keys][:ssh][:host_ecdsa_public]
57     ecdsa_type = node[:keys][:ssh][:host_ecdsa_type]
58
59     keys[ecdsa_type] = node[:keys][:ssh][:host_ecdsa_public]
60   end
61
62   if node[:keys][:ssh][:host_ed25519_public]
63     keys["ssh-ed25519"] = node[:keys][:ssh][:host_ed25519_public]
64   end
65
66   Hash[
67     :names => names,
68     :addresses => node.ipaddresses.sort,
69     :keys => keys
70   ]
71 end
72
73 template "/etc/ssh/ssh_config" do
74   source "ssh_config.erb"
75   mode 0o644
76   owner "root"
77   group "root"
78 end
79
80 template "/etc/ssh/ssh_known_hosts" do
81   source "ssh_known_hosts.erb"
82   mode 0o444
83   owner "root"
84   group "root"
85   backup false
86   variables(
87     :hosts => hosts
88   )
89 end
90
91 firewall_rule "accept-ssh" do
92   action :accept
93   source "net"
94   dest "fw"
95   proto "tcp:syn"
96   dest_ports node[:openssh][:port]
97 end