blob: da3a398568b856364ed31ca0ce1eae2939435c40 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
class shorewall::debian inherits shorewall::base {
case $shorewall_startup {
'': { $shorewall_startup = "1" }
}
file{'/etc/default/shorewall':
content => template("shorewall/debian_default.erb"),
require => Package['shorewall'],
notify => Service['shorewall'],
owner => root, group => 0, mode => 0644;
}
Service['shorewall']{
status => '/sbin/shorewall status'
}
}
|