summaryrefslogtreecommitdiff
path: root/puppet/modules/site_config/manifests/vagrant.pp
diff options
context:
space:
mode:
authorvarac <varacanero@zeromail.org>2013-09-17 18:52:36 +0200
committervarac <varacanero@zeromail.org>2013-09-17 18:52:36 +0200
commita9296de31af36dcedcc930052d2c589b6d77b149 (patch)
tree7b8da54b54b42c943cf132fb4a020654b419fd15 /puppet/modules/site_config/manifests/vagrant.pp
parentc5d4a716ffc8bad1a0a634438245eb02452ed43d (diff)
parent5ca8f6f9d26a2c2abfa9f1752aad6b8d91020074 (diff)
Merge branch 'feature/2399_shorewall_on_vagrant_fails' into develop
Diffstat (limited to 'puppet/modules/site_config/manifests/vagrant.pp')
-rw-r--r--puppet/modules/site_config/manifests/vagrant.pp10
1 files changed, 10 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..04266735
--- /dev/null
+++ b/puppet/modules/site_config/manifests/vagrant.pp
@@ -0,0 +1,10 @@
+class site_config::vagrant {
+ # class for vagrant nodes
+
+ # eth0 on vagrant nodes is the uplink if
+ shorewall::interface { 'eth0':
+ zone => 'net',
+ options => 'tcpflags,blacklist,nosmurfs';
+ }
+
+}