aboutsummaryrefslogtreecommitdiff
path: root/manifests/centos.pp
blob: 591185a48d9a22b772bd4f711b9151855f047d5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# things needed on centos
class shorewall::centos inherits shorewall::base {
  if $::lsbmajdistrelease == '6' {
    augeas{'enable_shorewall':
      context => '/files/etc/sysconfig/shorewall',
      changes => 'set startup 1',
      lens    => 'Shellvars.lns',
      incl    => '/etc/sysconfig/shorewall',
      require => Package['shorewall'],
      notify  => Service['shorewall'],
    }
  }
}