aboutsummaryrefslogtreecommitdiff
path: root/manifests/init.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/init.pp')
-rw-r--r--manifests/init.pp8
1 files changed, 7 insertions, 1 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index 70086dc..61f7fea 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -4,7 +4,13 @@ class shorewall {
case $operatingsystem {
gentoo: { include shorewall::gentoo }
- debian,ubuntu: { include shorewall::debian }
+ debian: { include shorewall::debian }
+ ubuntu: {
+ case $lsbdistcodename {
+ karmic: { include shorewall::ubuntu::karmic }
+ default: { include shorewall::debian }
+ }
+ }
default: { notice "unknown operatingsystem: $operatingsystem"
include shorewall::base }
}