#
-# Cookbook Name:: openssh
+# Cookbook:: openssh
# Recipe:: default
#
-# Copyright 2010, OpenStreetMap Foundation.
-# Copyright 2008-2009, Opscode, Inc.
+# Copyright:: 2010, OpenStreetMap Foundation.
+# Copyright:: 2008-2009, Opscode, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# 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,
package "openssh-server"
service "ssh" do
- if node[:lsb][:release].to_f >= 15.10
- provider Chef::Provider::Service::Systemd
- elsif node[:lsb][:release].to_f >= 14.04
- provider Chef::Provider::Service::Upstart
- end
action [:enable, :start]
supports :status => true, :restart => true, :reload => true
end
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],
+ "ssh-dss" => node[:keys][:ssh][:host_dsa_public]
}
- if node[:keys][:ssh][:host_ecdsa_public] # ~FC039
- ecdsa_type = node[:keys][:ssh][:host_ecdsa_type] # ~FC039
+ if node[:keys][:ssh][:host_ecdsa_public]
+ ecdsa_type = node[:keys][:ssh][:host_ecdsa_type]
+
+ keys[ecdsa_type] = node[:keys][:ssh][:host_ecdsa_public]
+ end
- keys[ecdsa_type] = node[:keys][:ssh][:host_ecdsa_public] # ~FC039
+ if node[:keys][:ssh][:host_ed25519_public]
+ keys["ssh-ed25519"] = node[:keys][:ssh][:host_ed25519_public]
end
Hash[
source "net"
dest "fw"
proto "tcp:syn"
- dest_ports "ssh"
+ dest_ports node[:openssh][:port]
end