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