summaryrefslogtreecommitdiff
path: root/manifests/debian.pp
blob: 2ff88c89a8a3972cc7c700a28c92712875ad23f5 (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'
  }
}