diff options
author | Tomas Barton <barton.tomas@gmail.com> | 2014-01-26 09:36:35 +0100 |
---|---|---|
committer | Tomas Barton <barton.tomas@gmail.com> | 2014-01-26 18:26:34 +0100 |
commit | 78f1ff00d09d0ebf8f132e70444b9bcf030b6711 (patch) | |
tree | cc4ef1f3b2758b6097dbb66720a86d02b703476b /manifests | |
parent | aee6885940cad29ff4ab7437e89c394bc1c19a46 (diff) | |
download | puppet-sshd-78f1ff00d09d0ebf8f132e70444b9bcf030b6711.tar.gz puppet-sshd-78f1ff00d09d0ebf8f132e70444b9bcf030b6711.tar.bz2 |
replaces shared-lsb by puppetlabs/stdlib
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/debian.pp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/manifests/debian.pp b/manifests/debian.pp index ced5db7..baacbba 100644 --- a/manifests/debian.pp +++ b/manifests/debian.pp @@ -1,7 +1,9 @@ class sshd::debian inherits sshd::linux { # the templates for Debian need lsbdistcodename - require lsb + ensure_resource('package', 'lsb-release', {'ensure' => 'present' }) + #requires stdlib >= 3.2 + #ensure_packages(['lsb-release']) Package[openssh]{ name => 'openssh-server', |