diff options
author | Micah Anderson <micah@riseup.net> | 2009-07-07 21:02:31 -0400 |
---|---|---|
committer | Micah Anderson <micah@riseup.net> | 2009-07-07 21:02:31 -0400 |
commit | 55e0a6178ba2831231400a23aab97b4d41ecfffc (patch) | |
tree | 8233e693cbd596f575aa634a974dd2619e98d4b4 | |
parent | 93e2f4d4c02d01fd430d1b9e1cf6860508a03773 (diff) | |
download | puppet-sshd-55e0a6178ba2831231400a23aab97b4d41ecfffc.tar.gz puppet-sshd-55e0a6178ba2831231400a23aab97b4d41ecfffc.tar.bz2 |
the sshd::linux class cannot also define the openssh package
if we are to have the possibility of potentially overriding the version number it must be done in the base class
-rw-r--r-- | manifests/init.pp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index 5179e08..ee233db 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -260,9 +260,6 @@ class sshd::base { } class sshd::linux inherits sshd::base { - package{openssh: - ensure => present, - } File[sshd_config]{ require +> Package[openssh], } |