# instances can live together in the same physical host.
#
class { 'sshd':
- listen_address => hiera('nodo::sshd_listen_address', [ "$ipaddress", '127.0.0.1' ]),
+ listen_address => hiera('nodo::sshd_listen_address', [ "${::ipaddress}", '127.0.0.1' ]),
password_authentication => hiera('nodo::sshd_password_authentication', 'yes'),
shared_ip => hiera('nodo::sshd_shared_ip', 'yes'),
tcp_forwarding => hiera('nodo::sshd_tcp_forwarding', 'yes'),
group => "root",
mode => 0644,
ensure => present,
- content => "$fqdn\n",
+ content => "${::fqdn}\n",
}
file { "/etc/rc.local":