blob: a658cdc00e24c1c57776f886ae263e4c9ad5aed4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
class shorewall::debian inherits shorewall::base {
file{'/etc/default/shorewall':
source => "puppet://$server/modules/shorewall/debian/default",
require => Package['shorewall-shell'],
notify => Service['shorewall'],
owner => root, group => 0, mode => 0644;
}
Service['shorewall']{
status => '/sbin/shorewall status'
}
}
|