diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2012-06-27 12:54:25 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2012-06-27 12:54:25 -0300 |
commit | 00411cb4f9b0f3e19ad6d5fe0918e870b337f0aa (patch) | |
tree | 0cef37dac9efd87024b5f6261cfd3d52708afc37 /manifests | |
parent | d4dc2ca49e83d7a8680c4ea8d8cddb130560488e (diff) | |
download | puppet-nodo-00411cb4f9b0f3e19ad6d5fe0918e870b337f0aa.tar.gz puppet-nodo-00411cb4f9b0f3e19ad6d5fe0918e870b337f0aa.tar.bz2 |
SSH should listen also at loopback on nodo::physical
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/physical.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/physical.pp b/manifests/physical.pp index 68368ea..cc0e7f6 100644 --- a/manifests/physical.pp +++ b/manifests/physical.pp @@ -49,7 +49,7 @@ class nodo::physical inherits nodo { # can live together in the same physical host. # case $sshd_listen_address { - '': { $sshd_listen_address = [ "$ipaddress" ] } + '': { $sshd_listen_address = [ "$ipaddress", '127.0.0.1' ] } } include sshd |