123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- $Id$
- --- shorewall-common-4.0.7.orig/install.sh 2007-12-26 22:15:47.000000000 +0100
- +++ shorewall-common-4.0.7/install.sh 2009-12-11 23:10:40.000000000 +0100
- @@ -183,7 +183,6 @@ PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/
- #
- # Determine where to install the firewall script
- #
- -DEBIAN=
-
- OWNERSHIP="-o $OWNER -g $GROUP"
-
- @@ -198,16 +197,6 @@ if [ -n "$PREFIX" ]; then
- else
- [ -x /usr/share/shorewall-shell/compiler -o -x /usr/share/shorewall-perl/compiler.pl ] || \
- { echo " ERROR: No Shorewall compiler is installed" >&2; exit 1; }
- - if [ -d /etc/apt -a -e /usr/bin/dpkg ]; then
- - DEBIAN=yes
- - elif [ -f /etc/slackware-version ] ; then
- - DEST="/etc/rc.d"
- - INIT="rc.firewall"
- - elif [ -f /etc/arch-release ] ; then
- - DEST="/etc/rc.d"
- - INIT="shorewall"
- - ARCHLINUX=yes
- - fi
- fi
-
- #
- @@ -238,14 +227,7 @@ echo "shorewall control program installe
- #
- # Install the Firewall Script
- #
- -if [ -n "$DEBIAN" ]; then
- - install_file_with_backup init.debian.sh /etc/init.d/shorewall 0544 ${PREFIX}/usr/share/shorewall-${VERSION}.bkout
- -elif [ -n "$ARCHLINUX" ]; then
- - install_file_with_backup init.archlinux.sh ${PREFIX}${DEST}/$INIT 0544 ${PREFIX}/usr/share/shorewall-${VERSION}.bkout
- -
- -else
- - install_file_with_backup init.sh ${PREFIX}${DEST}/$INIT 0544 ${PREFIX}/usr/share/shorewall-${VERSION}.bkout
- -fi
- +install_file_with_backup init.sh ${PREFIX}${DEST}/$INIT 0544 ${PREFIX}/usr/share/shorewall-${VERSION}.bkout
-
- echo "Shorewall script installed in ${PREFIX}${DEST}/$INIT"
-
- @@ -273,9 +255,6 @@ if [ ! -f ${PREFIX}/etc/shorewall/shorew
- fi
-
-
- -if [ -n "$ARCHLINUX" ] ; then
- - sed -e 's!LOGFILE=/var/log/messages!LOGFILE=/var/log/messages.log!' -i ${PREFIX}/etc/shorewall/shorewall.conf
- -fi
- #
- # Install the zones file
- #
- @@ -683,15 +662,18 @@ fi
-
- cd manpages
-
- +run_install -d ${PREFIX}/usr/share/man/man5
- +run_install -d ${PREFIX}/usr/share/man/man8
- +
- for f in *.5; do
- gzip -c $f > $f.gz
- - run_install -D -m 0644 $f.gz ${PREFIX}/usr/share/man/man5/$f.gz
- + run_install -m 0644 $f.gz ${PREFIX}/usr/share/man/man5/$f.gz
- echo "Man page $f.gz installed to /usr/share/man/man5/$f.gz"
- done
-
- for f in *.8; do
- gzip -c $f > $f.gz
- - run_install -D -m 0644 $f.gz ${PREFIX}/usr/share/man/man8/$f.gz
- + run_install -m 0644 $f.gz ${PREFIX}/usr/share/man/man8/$f.gz
- echo "Man page $f.gz installed to /usr/share/man/man8/$f.gz"
- done
-
- @@ -704,43 +686,6 @@ echo "Man Pages Installed"
- #
- install_file firewall ${PREFIX}/usr/share/shorewall/firewall 0755
-
- -if [ -z "$PREFIX" -a -n "$first_install" ]; then
- - if [ -n "$DEBIAN" ]; then
- - run_install $OWNERSHIP -m 0644 default.debian /etc/default/shorewall
- - ln -s ../init.d/shorewall /etc/rcS.d/S40shorewall
- - echo "shorewall will start automatically at boot"
- - echo "Set startup=1 in /etc/default/shorewall to enable"
- - touch /var/log/shorewall-init.log
- - qt mywhich perl && perl -p -w -i -e 's/^STARTUP_ENABLED=No/STARTUP_ENABLED=Yes/;s/^IP_FORWARDING=On/IP_FORWARDING=Keep/;s/^SUBSYSLOCK=.*/SUBSYSLOCK=/;' /etc/shorewall/shorewall.conf
- - else
- - if [ -x /sbin/insserv -o -x /usr/sbin/insserv ]; then
- - if insserv /etc/init.d/shorewall ; then
- - echo "shorewall will start automatically at boot"
- - echo "Set STARTUP_ENABLED=Yes in /etc/shorewall/shorewall.conf to enable"
- - else
- - cant_autostart
- - fi
- - elif [ -x /sbin/chkconfig -o -x /usr/sbin/chkconfig ]; then
- - if chkconfig --add shorewall ; then
- - echo "shorewall will start automatically in run levels as follows:"
- - echo "Set STARTUP_ENABLED=Yes in /etc/shorewall/shorewall.conf to enable"
- - chkconfig --list shorewall
- - else
- - cant_autostart
- - fi
- - elif [ -x /sbin/rc-update ]; then
- - if rc-update add shorewall default; then
- - echo "shorewall will start automatically at boot"
- - echo "Set STARTUP_ENABLED=Yes in /etc/shorewall/shorewall.conf to enable"
- - else
- - cant_autostart
- - fi
- - elif [ "$INIT" != rc.firewall ]; then #Slackware starts this automatically
- - cant_autostart
- - fi
- - fi
- -fi
- -
- #
- # Report Success
- #
|