From d913ef828d85f8d1d6468e2ee100e44f307c524d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timo=20M=E4kinen?= Date: Thu, 17 Oct 2013 23:35:08 +0300 Subject: [PATCH] psacct: Added Debian support. --- psacct/manifests/init.pp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/psacct/manifests/init.pp b/psacct/manifests/init.pp index bd85529..345b09d 100644 --- a/psacct/manifests/init.pp +++ b/psacct/manifests/init.pp @@ -24,6 +24,7 @@ class psacct::linux { package { "psacct": name => $::operatingsystem ? { + "debian" => "acct", "ubuntu" => "acct", default => "psacct", }, @@ -32,10 +33,12 @@ class psacct::linux { service { "psacct": name => $::operatingsystem ? { + "debian" => "acct", "ubuntu" => "acct", default => "psacct", }, ensure => $::operatingsystem ? { + "debian" => undef, "ubuntu" => undef, default => running, },