summaryrefslogtreecommitdiff
path: root/manifests/debian.pp
blob: d2ba35dae4f037901e8d29b463348f3e9faeb571 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
class shorewall::debian inherits shorewall::base {
    file{'/etc/default/shorewall':
        #source => "puppet://$server/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'
    }
}