blob: c7ed607715e74ebafa68fe77ebeeb706b9f36e44 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
class shorewall::debian inherits shorewall::base {
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'
}
}
|