summaryrefslogtreecommitdiff
path: root/puppet/modules/site_config/manifests/vagrant.pp
diff options
context:
space:
mode:
Diffstat (limited to 'puppet/modules/site_config/manifests/vagrant.pp')
-rw-r--r--puppet/modules/site_config/manifests/vagrant.pp11
1 files changed, 11 insertions, 0 deletions
diff --git a/puppet/modules/site_config/manifests/vagrant.pp b/puppet/modules/site_config/manifests/vagrant.pp
new file mode 100644
index 00000000..8f50b305
--- /dev/null
+++ b/puppet/modules/site_config/manifests/vagrant.pp
@@ -0,0 +1,11 @@
+class site_config::vagrant {
+ # class for vagrant nodes
+
+ include site_shorewall::defaults
+ # eth0 on vagrant nodes is the uplink if
+ shorewall::interface { 'eth0':
+ zone => 'net',
+ options => 'tcpflags,blacklist,nosmurfs';
+ }
+
+}