This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "IPFire 2.x development tree".
The branch, master has been updated via 3a90a80c2b88e0d6e3aa403a7b655cf3bb141bc0 (commit) from c131aeaff68e52c3aa36418ae219862416c89e9b (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit 3a90a80c2b88e0d6e3aa403a7b655cf3bb141bc0 Author: Arne Fitzenreiter arne_f@ipfire.org Date: Sat May 15 19:41:55 2010 +0200
Add an config setting to remove netfilter sip modules.
-----------------------------------------------------------------------
Summary of changes: config/rootfiles/core/38/filelists/files | 1 + src/initscripts/init.d/network | 7 ++++++- 2 files changed, 7 insertions(+), 1 deletions(-)
Difference in files: diff --git a/config/rootfiles/core/38/filelists/files b/config/rootfiles/core/38/filelists/files index 353b616..ab26809 100644 --- a/config/rootfiles/core/38/filelists/files +++ b/config/rootfiles/core/38/filelists/files @@ -18,6 +18,7 @@ var/ipfire/langs/en.pl var/ipfire/langs/fr.pl etc/rc.d/init.d/firewall etc/rc.d/init.d/ipsec +etc/rc.d/init.d/network etc/rc.d/init.d/ntp etc/rc.d/init.d/modules usr/local/bin/ipsecctrl diff --git a/src/initscripts/init.d/network b/src/initscripts/init.d/network index 9c7e3ac..7f27a65 100644 --- a/src/initscripts/init.d/network +++ b/src/initscripts/init.d/network @@ -27,7 +27,12 @@ init_networking() { done (exit ${failed}) evaluate_retval - + + if [ -e /var/ipfire/main/disable_nf_sip ]; then + rmmod nf_nat_sip + rmmod nf_conntrack_sip + fi + boot_mesg "Setting up firewall" /etc/rc.d/init.d/firewall start; evaluate_retval
hooks/post-receive -- IPFire 2.x development tree