aboutsummaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authorFabien COMBERNOUS <Dan33l@users.noreply.github.com>2019-09-12 23:06:55 +0200
committerGitHub <noreply@github.com>2019-09-12 23:06:55 +0200
commit2455de32311040de0d608d8cc151aa6395700e8f (patch)
treea28cc8e9d862abac0491b4d2cfd412461567a05c /manifests
parent439e71b110e769d8164c4491a6662ac6f2b089db (diff)
parent221c45769e56ffda0ac82bd035e0ef5f37706836 (diff)
downloadpuppet-ferm-2455de32311040de0d608d8cc151aa6395700e8f.tar.gz
puppet-ferm-2455de32311040de0d608d8cc151aa6395700e8f.tar.bz2
Merge pull request #69 from bastelfreak/debian
readd Debian 9/10 support
Diffstat (limited to 'manifests')
-rw-r--r--manifests/service.pp2
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/service.pp b/manifests/service.pp
index f19997f..ad6fc47 100644
--- a/manifests/service.pp
+++ b/manifests/service.pp
@@ -12,7 +12,7 @@ class ferm::service {
}
# on Ubuntu, we can't start the service, unless we set ENABLED=true in /etc/default/ferm...
- if ($facts['os']['name'] == 'Ubuntu') {
+ if ($facts['os']['name'] in ['Ubuntu', 'Debian']) {
file_line{'enable_ferm':
path => '/etc/default/ferm',
line => 'ENABLED="yes"',