summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2015-10-07 14:30:09 -0300
committerSilvio Rhatto <rhatto@riseup.net>2015-10-07 14:30:09 -0300
commit94b876ea45394653caa4d14c52d096a4e647659f (patch)
tree0d765fa48bec391ab1867c8ff60a3ffadbb52896
parent7f3894654b7adbb0a4796fc2e83b6248282324bd (diff)
downloadpuppet-firewall-94b876ea45394653caa4d14c52d096a4e647659f.tar.gz
puppet-firewall-94b876ea45394653caa4d14c52d096a4e647659f.tar.bz2
Increase default bandwidth to 100mbps
-rw-r--r--manifests/init.pp4
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index 7491dee..2bc59fa 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -3,8 +3,8 @@ class firewall(
$device = hiera('firewall::device', 'eth0'),
$zone = hiera('firewall::zone', '-'),
$local_net = hiera('firewall::local_net', false),
- $in_bandwidth = hiera('firewall::in_bandwidth', '100mbit'),
- $out_bandwidth = hiera('firewall::out_bandwidth', '100mbit'),
+ $in_bandwidth = hiera('firewall::in_bandwidth', '100mbps'),
+ $out_bandwidth = hiera('firewall::out_bandwidth', '100mbps'),
$device_options = hiera('firewall::device_options', 'tcpflags,blacklist,routefilter,nosmurfs,logmartians'),
$vm_address = hiera('firewall::vm_address', '192.168.0.0/24'),
$vm_device = hiera('firewall::vm_device', false)