aboutsummaryrefslogtreecommitdiff
path: root/manifests/routestopped.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/routestopped.pp')
-rw-r--r--manifests/routestopped.pp10
1 files changed, 3 insertions, 7 deletions
diff --git a/manifests/routestopped.pp b/manifests/routestopped.pp
index 0b53a1b..cd39762 100644
--- a/manifests/routestopped.pp
+++ b/manifests/routestopped.pp
@@ -1,14 +1,10 @@
define shorewall::routestopped(
- $interface = '',
+ $interface = $name,
$host = '-',
$options = '',
$order='100'
){
- $real_interface = $interface ? {
- '' => $name,
- default => $interface,
- }
shorewall::entry{"routestopped-${order}-${name}":
- line => "${real_interface} ${host} ${options}",
- }
+ line => "${interface} ${host} ${options}",
+ }
}