summaryrefslogtreecommitdiff
path: root/puppet/modules/site_shorewall/manifests/service/http.pp
blob: 74b874d5f7a8850c312250b0c97a7b0ae3c11859 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
class site_shorewall::service::http {

  include site_shorewall::defaults

  shorewall::rule {
      'net2fw-http':
        source      => 'net',
        destination => '$FW',
        action      => 'HTTP(ACCEPT)',
        order       => 200;
  }

}