blob: b25d2d5051116773c625618f9b119356d5c805fc (
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/shorewall/debian/default",
require => Package['shorewall'],
notify => Service['shorewall'],
owner => root, group => 0, mode => 0644;
}
Service['shorewall']{
status => '/sbin/shorewall status'
}
}
|