aboutsummaryrefslogtreecommitdiff
path: root/manifests/physical.pp
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2013-01-18 13:29:51 -0200
committerSilvio Rhatto <rhatto@riseup.net>2013-01-18 13:29:51 -0200
commit8a95d3837ff38ade926e036fcb8d9851e14242aa (patch)
treedfe1f48318e9d8569747ecd97ba8ce068c9c0928 /manifests/physical.pp
parente02a131e4679403c45c852e25cb7128fef30e080 (diff)
downloadpuppet-nodo-8a95d3837ff38ade926e036fcb8d9851e14242aa.tar.gz
puppet-nodo-8a95d3837ff38ade926e036fcb8d9851e14242aa.tar.bz2
Upgrading ssh module
Diffstat (limited to 'manifests/physical.pp')
-rw-r--r--manifests/physical.pp10
1 files changed, 9 insertions, 1 deletions
diff --git a/manifests/physical.pp b/manifests/physical.pp
index 1c959be..03e8c7c 100644
--- a/manifests/physical.pp
+++ b/manifests/physical.pp
@@ -51,7 +51,15 @@ class nodo::physical inherits nodo {
case $sshd_listen_address {
'': { $sshd_listen_address = [ "$ipaddress", '127.0.0.1' ] }
}
- include sshd
+
+ class { 'sshd':
+ listen_address => $sshd_listen_address,
+ password_authentication => $ssh_password_authentication,
+ shared_ip => $ssh_shared_ip,
+ tcp_forwarding => $ssh_tcp_forwarding,
+ hardened_ssl => $ssh_hardened_ssl,
+ print_motd => $ssh_print_motd,
+ }
backupninja::sys { "sys":
ensure => present,