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 daa1ceba8bb57bbcae408ee727b54c0d8e26aaeb (commit) via 93c83301810946fc9a7a151d43a9f1077dc003f2 (commit) from 3528a1de286fd96b807539126ada060e49a7306c (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 daa1ceba8bb57bbcae408ee727b54c0d8e26aaeb Author: Arne Fitzenreiter arne_f@ipfire.org Date: Sun Jan 24 23:07:17 2010 +0100
Add IPTV chains for IGMPPROXY to firewall.
commit 93c83301810946fc9a7a151d43a9f1077dc003f2 Author: Arne Fitzenreiter arne_f@ipfire.org Date: Sun Jan 24 23:01:03 2010 +0100
Reload apache after openssl update.
-----------------------------------------------------------------------
Summary of changes: config/rootfiles/core/36/filelists/files | 1 + config/rootfiles/core/36/update.sh | 1 + src/initscripts/init.d/firewall | 6 ++++++ 3 files changed, 8 insertions(+), 0 deletions(-)
Difference in files: diff --git a/config/rootfiles/core/36/filelists/files b/config/rootfiles/core/36/filelists/files index 0037af1..02dd1c9 100644 --- a/config/rootfiles/core/36/filelists/files +++ b/config/rootfiles/core/36/filelists/files @@ -1 +1,2 @@ etc/system-release +etc/rc.d/init.d/firewall diff --git a/config/rootfiles/core/36/update.sh b/config/rootfiles/core/36/update.sh index 63c4264..a4ccd5b 100644 --- a/config/rootfiles/core/36/update.sh +++ b/config/rootfiles/core/36/update.sh @@ -32,6 +32,7 @@ extract_files # #Start services /etc/init.d/sshd start +/etc/init.d/apache reload # #Delete cyrus-sasl metafiles rm -f /opt/pakfire/db/installed/meta-cyrus-sasl diff --git a/src/initscripts/init.d/firewall b/src/initscripts/init.d/firewall index 1cd2009..0392e9f 100644 --- a/src/initscripts/init.d/firewall +++ b/src/initscripts/init.d/firewall @@ -151,6 +151,12 @@ case "$1" in /sbin/iptables -t nat -N CUSTOMPOSTROUTING /sbin/iptables -t nat -A POSTROUTING -j CUSTOMPOSTROUTING
+ # IPTV chains for IGMPPROXY + /sbin/iptables -N IPTVINPUT + /sbin/iptables -A INPUT -j IPTVINPUT + /sbin/iptables -N IPTVFORWARD + /sbin/iptables -A FORWARD -j IPTVFORWARD + # filtering from GUI /sbin/iptables -N GUIINPUT /sbin/iptables -A INPUT -j GUIINPUT
hooks/post-receive -- IPFire 2.x development tree