2 # Cookbook Name:: openssh
 
   5 # Copyright 2010, OpenStreetMap Foundation.
 
   6 # Copyright 2008-2009, Opscode, Inc.
 
   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
 
  12 #     http://www.apache.org/licenses/LICENSE-2.0
 
  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.
 
  21 include_recipe "networking"
 
  23 package "openssh-client"
 
  24 package "openssh-server"
 
  27   action [ :enable, :start ]
 
  28   supports :status => true, :restart => true, :reload => true
 
  31 hosts = search(:node, "networking:interfaces").sort_by do |node|
 
  34   names = [ node[:hostname] ]
 
  36   node.interfaces(:role => :external).each do |interface|
 
  37     names |= [ "#{node[:hostname]}.openstreetmap.org" ]
 
  38     names |= [ "#{node[:hostname]}.#{interface[:zone]}.openstreetmap.org" ]
 
  41   unless node.interfaces(:role => :internal).empty?
 
  42     names |= [ "#{node[:hostname]}.#{node[:networking][:roles][:external][:zone]}.openstreetmap.org" ]
 
  46     "rsa" => node[:keys][:ssh][:host_rsa_public],
 
  47     "dsa" => node[:keys][:ssh][:host_dsa_public]
 
  50   if node[:keys][:ssh][:host_ecdsa_public]
 
  51     ecdsa_type = node[:keys][:ssh][:host_ecdsa_type]
 
  53     keys[ecdsa_type] = node[:keys][:ssh][:host_ecdsa_public]
 
  58     :addresses => node.ipaddresses.sort,
 
  63 template "/etc/ssh/ssh_config" do
 
  64   source "ssh_config.erb"
 
  70 template "/etc/ssh/ssh_known_hosts" do
 
  71   source "ssh_known_hosts.erb"
 
  81 firewall_rule "accept-ssh" do