Update ssh module to support SUSE

Add parameters for SUSE based distros.

Change-Id: I5efbe49c72089f0dc59663f32009f85dfc3bb6e6
This commit is contained in:
Thomas Bechtold 2014-09-25 09:07:38 +02:00
parent 3d76cd02b4
commit 807b42d333
1 changed files with 6 additions and 1 deletions

View File

@ -14,8 +14,13 @@ class ssh::params {
$service_name = 'ssh'
$sftp_path = '/usr/lib/openssh/sftp-server'
}
'Suse': {
$package_name = 'openssh'
$service_name = 'sshd'
$sftp_path = '/usr/lib/ssh/sftp-server'
}
default: {
fail("Unsupported osfamily: ${::osfamily} The 'ssh' module only supports osfamily Debian or RedHat (slaves only).")
fail("Unsupported osfamily: ${::osfamily} The 'ssh' module only supports osfamily Debian, RedHat or SUSE (slaves only).")
}
}
}