blob: 23ca4de1acf46230f886b9dc04d1b3d64c14896c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# Gets included on vagrant nodes
class site_config::vagrant {
include site_shorewall::defaults
# eth0 on vagrant nodes is the uplink
shorewall::interface { 'eth0':
zone => 'net',
options => 'tcpflags,blacklist,nosmurfs';
}
}
|