summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorMohit Mehta <mohit@vyatta.com>2010-09-13 14:04:13 -0700
committerMohit Mehta <mohit@vyatta.com>2010-09-13 14:04:13 -0700
commit7afe9e82b60be763398531295d03f7215f21d94b (patch)
tree5979392a3b37c8b2459ddefda83b80f538397ad9 /templates
parent8edddaa5dbadbb35ed2d6f2fd3da7c5997d093e0 (diff)
downloadvyatta-cfg-firewall-7afe9e82b60be763398531295d03f7215f21d94b.tar.gz
vyatta-cfg-firewall-7afe9e82b60be763398531295d03f7215f21d94b.zip
Fix Bug 6149 Warning on boot because of modprobe config file names
* add .conf suffix to files in /etc/modprobe.d * remove old files without the suffix [from a previous release] during upgrade
Diffstat (limited to 'templates')
-rw-r--r--templates/firewall/conntrack-hash-size/node.def6
-rw-r--r--templates/firewall/node.def6
2 files changed, 6 insertions, 6 deletions
diff --git a/templates/firewall/conntrack-hash-size/node.def b/templates/firewall/conntrack-hash-size/node.def
index d4c2027..16b7c6c 100644
--- a/templates/firewall/conntrack-hash-size/node.def
+++ b/templates/firewall/conntrack-hash-size/node.def
@@ -8,11 +8,11 @@ val_help: u32:1-50000000; Size of hash to use for connection tracking table
syntax:expression: ($VAR(@) >= 1 && $VAR(@) <= 50000000) ; "Value must be between 1 and 50,000,000"
update:
- if ! grep -q "nf_conntrack hashsize=$VAR(@)$" /etc/modprobe.d/vyatta_nf_conntrack
+ if ! grep -q "nf_conntrack hashsize=$VAR(@)$" /etc/modprobe.d/vyatta_nf_conntrack.conf
then
sudo sh -c "sed -i -e '/options nf_conntrack hashsize/d' \
- /etc/modprobe.d/vyatta_nf_conntrack"
+ /etc/modprobe.d/vyatta_nf_conntrack.conf"
sudo sh -c "echo options nf_conntrack hashsize=$VAR(@) >> \
- /etc/modprobe.d/vyatta_nf_conntrack"
+ /etc/modprobe.d/vyatta_nf_conntrack.conf"
echo "Updated conntrack hash size. This change will take affect when the system is rebooted."
fi
diff --git a/templates/firewall/node.def b/templates/firewall/node.def
index e95bc07..30b5330 100644
--- a/templates/firewall/node.def
+++ b/templates/firewall/node.def
@@ -8,12 +8,12 @@ delete: # set conntrack table size to standard 16384 entries if fw disabled
sudo sh -c "echo 2048 > /proc/sys/net/netfilter/nf_conntrack_expect_max"
# set conntrack hash size to standard 4096
- if ! grep -q "nf_conntrack hashsize=4096$" /etc/modprobe.d/vyatta_nf_conntrack
+ if ! grep -q "nf_conntrack hashsize=4096$" /etc/modprobe.d/vyatta_nf_conntrack.conf
then
sudo sh -c "sed -i -e '/options nf_conntrack hashsize/d' \
- /etc/modprobe.d/vyatta_nf_conntrack"
+ /etc/modprobe.d/vyatta_nf_conntrack.conf"
sudo sh -c "echo options nf_conntrack hashsize=4096 >> \
- /etc/modprobe.d/vyatta_nf_conntrack"
+ /etc/modprobe.d/vyatta_nf_conntrack.conf"
echo "Conntrack hash size set to default 4096. This change will take affect when the system is rebooted."
fi