blob: 5cd4643cf74de3a9ba8c3ddcd736b0b4cc188cbb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
class shorewall::rules::out::puppet {
include ::shorewall::rules::puppet
# we want to connect to the puppet server
shorewall::rule { 'me-net-puppet_tcp':
source => '$FW',
destination => 'net:$PUPPETSERVER',
proto => 'tcp',
destinationport => '$PUPPETSERVER_PORT,$PUPPETSERVER_SIGN_PORT',
order => 340,
action => 'ACCEPT';
}
}
|