diff options
author | Micah Anderson <micah@riseup.net> | 2008-09-30 21:04:46 -0400 |
---|---|---|
committer | Micah Anderson <micah@riseup.net> | 2008-09-30 21:04:46 -0400 |
commit | 90f14f4ae47fcd279d64da1fa9e169197a884912 (patch) | |
tree | a8b13a80a382ce7d374f47e95d6dcadc910c6644 | |
parent | 16dd74a7de341c0e8bf385b7bd8d0e082f7342bb (diff) | |
parent | fce684ca587dd891b7d912be9448888ee18f39c0 (diff) | |
download | puppet-sshd-90f14f4ae47fcd279d64da1fa9e169197a884912.tar.gz puppet-sshd-90f14f4ae47fcd279d64da1fa9e169197a884912.tar.bz2 |
Merge commit 'ng/master'
-rw-r--r-- | manifests/client.pp | 19 | ||||
-rw-r--r-- | manifests/init.pp | 1 | ||||
l--------- | templates/sshd_config/CentOS_Final.erb | 1 |
3 files changed, 14 insertions, 7 deletions
diff --git a/manifests/client.pp b/manifests/client.pp index f0b05c5..34308b4 100644 --- a/manifests/client.pp +++ b/manifests/client.pp @@ -3,15 +3,16 @@ class sshd::client { case $operatingsystem { debian: { include sshd::client::debian } - default: { include sshd::client::base } + default: { + case $kernel { + linux: { include sshd::client::linux } + default: { include sshd::client::base } + } + } } } class sshd::client::base { - package {'openssh-clients': - ensure => installed, - } - # this is needed because the gid might have changed file { '/etc/ssh/ssh_known_hosts': mode => 0644, owner => root, group => 0; @@ -21,7 +22,13 @@ class sshd::client::base { Sshkey <<||>> } -class sshd::client::debian inherits sshd::client::base { +class sshd::client::linux inherits sshd::client::base { + package {'openssh-clients': + ensure => installed, + } +} + +class sshd::client::debian inherits sshd::client::linux { Package['openssh-clients']{ name => 'openssh-client', } diff --git a/manifests/init.pp b/manifests/init.pp index 96e6d08..55a2714 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -210,7 +210,6 @@ class sshd::base { type => ssh-rsa, key => $sshrsakey_key, ensure => present, - require => Package["openssh-clients"], } } } diff --git a/templates/sshd_config/CentOS_Final.erb b/templates/sshd_config/CentOS_Final.erb new file mode 120000 index 0000000..03246aa --- /dev/null +++ b/templates/sshd_config/CentOS_Final.erb @@ -0,0 +1 @@ +CentOS.erb
\ No newline at end of file |