From: mh Date: Fri, 30 Oct 2009 21:07:23 +0000 (+0100) Subject: switch to new lsb way X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=384b1466ea7b860f7f17b05281c49fa5a8ebe42a;p=puppet-sshd.git switch to new lsb way --- diff --git a/manifests/debian.pp b/manifests/debian.pp index 555cf12..528779c 100644 --- a/manifests/debian.pp +++ b/manifests/debian.pp @@ -1,13 +1,16 @@ class sshd::debian inherits sshd::linux { # the templates for Debian need lsbdistcodename - include assert_lsbdistcodename + include lsb + File['sshd_config']{ + require => Package['lsb'] + } - Package[openssh]{ - name => 'openssh-server', - } - Service[sshd]{ - name => 'ssh', - hasstatus => false, - } + Package[openssh]{ + name => 'openssh-server', + } + Service[sshd]{ + name => 'ssh', + hasstatus => false, + } }