aboutsummaryrefslogtreecommitdiff
path: root/manifests/debian.pp
blob: 326b42be40366d19fdeafa357b59ba3a4742cd05 (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  => Exec['shorewall_check'],
    owner   => 'root', group => 'root', mode => '0644';
  }
  Service['shorewall']{
    status => '/sbin/shorewall status'
  }
}