mirror of
https://gitlab.com/shorewall/code.git
synced 2024-11-26 01:23:14 +01:00
Add PPP support in RedHat and SuSE
Signed-off-by: Tom Eastep <teastep@shorewall.net>
This commit is contained in:
parent
443cf98539
commit
6d65100457
@ -102,6 +102,51 @@ if [ -f /etc/debian_version ]; then
|
|||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
elif [ -f /etc/SuSE-release ]; then
|
elif [ -f /etc/SuSE-release ]; then
|
||||||
|
case $0 in
|
||||||
|
/etc/ppp*)
|
||||||
|
#
|
||||||
|
# SUSE ppp
|
||||||
|
#
|
||||||
|
INTERFACE="$1"
|
||||||
|
|
||||||
|
case $0 in
|
||||||
|
*ip-*)
|
||||||
|
#
|
||||||
|
# IPv4
|
||||||
|
#
|
||||||
|
for product in $SAVEPRODUCTS; do
|
||||||
|
case $product in
|
||||||
|
shorewall|shorewall-lite)
|
||||||
|
PRODUCTS="$PRODUCTS $product";
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
#
|
||||||
|
# IPv6
|
||||||
|
#
|
||||||
|
for product in $SAVEPRODUCTS; do
|
||||||
|
case $product in
|
||||||
|
shorewall6|shorewall6-lite)
|
||||||
|
PRODUCTS="$PRODUCTS $product";
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
case $0 in
|
||||||
|
*up/*)
|
||||||
|
COMMAND=up
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
COMMAND=down
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
;;
|
||||||
|
|
||||||
|
*)
|
||||||
#
|
#
|
||||||
# SuSE ifupdown system
|
# SuSE ifupdown system
|
||||||
#
|
#
|
||||||
@ -118,10 +163,29 @@ elif [ -f /etc/SuSE-release ]; then
|
|||||||
exit 0
|
exit 0
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
;;
|
||||||
|
esac
|
||||||
else
|
else
|
||||||
#
|
#
|
||||||
# Assume RedHat/Fedora/CentOS/Foobar/...
|
# Assume RedHat/Fedora/CentOS/Foobar/...
|
||||||
#
|
#
|
||||||
|
case $0 in
|
||||||
|
/etc/ppp*)
|
||||||
|
INTERFACE="$1"
|
||||||
|
|
||||||
|
case $0 in
|
||||||
|
*ip-up.local)
|
||||||
|
COMMAND=up
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
COMMAND=down
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
#
|
||||||
|
# RedHat ifup/down system
|
||||||
|
#
|
||||||
INTERFACE="$1"
|
INTERFACE="$1"
|
||||||
|
|
||||||
case $0 in
|
case $0 in
|
||||||
@ -138,6 +202,8 @@ else
|
|||||||
exit 0
|
exit 0
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
;;
|
||||||
|
esac
|
||||||
fi
|
fi
|
||||||
|
|
||||||
for PRODUCT in $PRODUCTS; do
|
for PRODUCT in $PRODUCTS; do
|
||||||
|
@ -289,12 +289,6 @@ if [ -z "$DESTDIR" ]; then
|
|||||||
update-rc.d shorewall-init defaults
|
update-rc.d shorewall-init defaults
|
||||||
|
|
||||||
echo "Shorewall Init will start automatically at boot"
|
echo "Shorewall Init will start automatically at boot"
|
||||||
|
|
||||||
if [ -d /etc/ppp ]; then
|
|
||||||
for directory in ip-up.d ip-down.d ipv6-up.d ipv6-down.d; do
|
|
||||||
[ -d /etc/ppp/$directory ] && ln -sf /usr/share/shorewall-init/ifupdown /etc/ppp/$directory/shorewall
|
|
||||||
done
|
|
||||||
fi
|
|
||||||
else
|
else
|
||||||
if [ -x /sbin/insserv -o -x /usr/sbin/insserv ]; then
|
if [ -x /sbin/insserv -o -x /usr/sbin/insserv ]; then
|
||||||
if insserv /etc/init.d/shorewall-init ; then
|
if insserv /etc/init.d/shorewall-init ; then
|
||||||
@ -318,12 +312,7 @@ if [ -z "$DESTDIR" ]; then
|
|||||||
elif [ "$INIT" != rc.firewall ]; then #Slackware starts this automatically
|
elif [ "$INIT" != rc.firewall ]; then #Slackware starts this automatically
|
||||||
cant_autostart
|
cant_autostart
|
||||||
fi
|
fi
|
||||||
fi
|
|
||||||
elif [ -n "$DEBIAN" ]; then
|
|
||||||
if [ -d /etc/ppp ]; then
|
|
||||||
for directory in ip-up.d ip-down.d ipv6-up.d ipv6-down.d; do
|
|
||||||
[ -d /etc/ppp/$directory ] && ln -sf /usr/share/shorewall-init/ifupdown /etc/ppp/$directory/shorewall
|
|
||||||
done
|
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
@ -337,10 +326,30 @@ else
|
|||||||
echo "Shorewall Init will start automatically at boot"
|
echo "Shorewall Init will start automatically at boot"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
if [ -n "$DEBIAN" ] -a -d ${DESTDIR}/etc/ppp ]; then
|
if [ -f ${DESTDIR}/etc/ppp ]; then
|
||||||
|
if [ -n "$DEBIAN" ] -o -n "$SUSE" ]; then
|
||||||
for directory in ip-up.d ip-down.d ipv6-up.d ipv6-down.d; do
|
for directory in ip-up.d ip-down.d ipv6-up.d ipv6-down.d; do
|
||||||
[ -d /etc/ppp/$directory ] && ln -sf /usr/share/shorewall-init/ifupdown ${DESTDIR}/etc/ppp/$directory/shorewall
|
mkdir -p ${DESTDIR}/etc/ppp/$directory #SuSE doesn't create the IPv6 directories
|
||||||
|
cp -fp ${DESTDIR}/usr/share/shorewall-init/ifupdown ${DESTDIR}/etc/ppp/$directory/shorewall
|
||||||
|
done
|
||||||
|
elif [ -n "$REDHAT" ]; then
|
||||||
|
#
|
||||||
|
# Must use the dreaded ip_xxx.local file
|
||||||
|
#
|
||||||
|
for file in ip-up.local ip-down.local; do
|
||||||
|
FILE=${DESTDIR}/etc/ppp/$file
|
||||||
|
if [ -f $FILE ]; then
|
||||||
|
if fgrep -q Shorewall-based $FILE ; then
|
||||||
|
cp -fp ${DESTDIR}/usr/share/shorewall-init/ifupdown $FILE
|
||||||
|
else
|
||||||
|
echo "$FILE already exists -- ppp devices will not be handled"
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
cp -fp ${DESTDIR}/usr/share/shorewall-init/ifupdown $FILE
|
||||||
|
fi
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
@ -53,6 +53,11 @@ fi
|
|||||||
if [ -f /etc/SuSE-release ]; then
|
if [ -f /etc/SuSE-release ]; then
|
||||||
cp -pf /usr/share/shorewall-init/ifupdown /etc/sysconfig/network/if-up.d/shorewall
|
cp -pf /usr/share/shorewall-init/ifupdown /etc/sysconfig/network/if-up.d/shorewall
|
||||||
cp -pf /usr/share/shorewall-init/ifupdown /etc/sysconfig/network/if-down.d/shorewall
|
cp -pf /usr/share/shorewall-init/ifupdown /etc/sysconfig/network/if-down.d/shorewall
|
||||||
|
if [ -d /etc/ppp ]; then
|
||||||
|
for directory in ip-up.d ip-down.d ipv6-up.d ipv6-down.d; do
|
||||||
|
cp -pf /usr/share/shorewall-init/ifupdown /etc/ppp/$directory/shorewall
|
||||||
|
done
|
||||||
|
fi
|
||||||
else
|
else
|
||||||
if [ -f /sbin/ifup-local -o -f /sbin/ifdown-local ]; then
|
if [ -f /sbin/ifup-local -o -f /sbin/ifdown-local ]; then
|
||||||
if ! grep -q Shorewall /sbin/ifup-local || ! grep -q Shorewall /sbin/ifdown-local; then
|
if ! grep -q Shorewall /sbin/ifup-local || ! grep -q Shorewall /sbin/ifdown-local; then
|
||||||
@ -66,6 +71,19 @@ else
|
|||||||
cp -pf /usr/share/shorewall-init/ifupdown /sbin/ifdown-local
|
cp -pf /usr/share/shorewall-init/ifupdown /sbin/ifdown-local
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ -d /etc/ppp ]; then
|
||||||
|
if [ -f /etc/ppp/ip-up.local -o -f /etc/ppp/ip-down.local ]; then
|
||||||
|
if ! grep -q Shorewall-based /etc/ppp/ip-up.local || ! grep -q Shorewall-based /etc/ppp//ip-down.local; then
|
||||||
|
echo "WARNING: /etc/ppp/ip-up.local and/or /etc/ppp/ip-down.local already exist; ppp devices will not be handled" >&2
|
||||||
|
else
|
||||||
|
cp -pf /usr/share/shorewall-init/ifupdown /etc/ppp/ip-up.local
|
||||||
|
cp -pf /usr/share/shorewall-init/ifupdown /etc/ppp/ip-down.local
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
cp -pf /usr/share/shorewall-init/ifupdown /etc/ppp/ip-up.local
|
||||||
|
cp -pf /usr/share/shorewall-init/ifupdown /etc/ppp/ip-down.local
|
||||||
|
fi
|
||||||
|
|
||||||
if [ -d /etc/NetworkManager/dispatcher.d/ ]; then
|
if [ -d /etc/NetworkManager/dispatcher.d/ ]; then
|
||||||
cp -pf /usr/share/shorewall-init/ifupdown /etc/NetworkManager/dispatcher.d/01-shorewall
|
cp -pf /usr/share/shorewall-init/ifupdown /etc/NetworkManager/dispatcher.d/01-shorewall
|
||||||
fi
|
fi
|
||||||
@ -83,6 +101,9 @@ if [ $1 -eq 0 ]; then
|
|||||||
[ -f /sbin/ifup-local ] && grep -q Shorewall /sbin/ifup-local && rm -f /sbin/ifup-local
|
[ -f /sbin/ifup-local ] && grep -q Shorewall /sbin/ifup-local && rm -f /sbin/ifup-local
|
||||||
[ -f /sbin/ifdown-local ] && grep -q Shorewall /sbin/ifdown-local && rm -f /sbin/ifdown-local
|
[ -f /sbin/ifdown-local ] && grep -q Shorewall /sbin/ifdown-local && rm -f /sbin/ifdown-local
|
||||||
|
|
||||||
|
[ -f /etc/ppp/ip-up.local ] && grep -q Shorewall-based /etc/ppp/ip-up.local && rm -f /etc/ppp/ip-up.local
|
||||||
|
[ -f /etc/ppp/ip-down.local ] && grep -q Shorewall-based /etc/ppp/ip-down.local && rm -f /etc/ppp/ip-down.local
|
||||||
|
|
||||||
rm -f /etc/NetworkManager/dispatcher.d/01-shorewall
|
rm -f /etc/NetworkManager/dispatcher.d/01-shorewall
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -94,6 +94,12 @@ if [ -d /etc/ppp ]; then
|
|||||||
for directory in ip-up.d ip-down.d ipv6-up.d ipv6-down.d; do
|
for directory in ip-up.d ip-down.d ipv6-up.d ipv6-down.d; do
|
||||||
remove_file /etc/ppp/$directory/shorewall
|
remove_file /etc/ppp/$directory/shorewall
|
||||||
done
|
done
|
||||||
|
|
||||||
|
for file in if-up.local if-down.local; do
|
||||||
|
if fgrep -q Shorewall-based /etc/ppp/$FILE; then
|
||||||
|
remove_file /etc/ppp/$FILE
|
||||||
|
fi
|
||||||
|
done
|
||||||
fi
|
fi
|
||||||
|
|
||||||
rm -rf /usr/share/shorewall-init
|
rm -rf /usr/share/shorewall-init
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
Changes in Shorewall 4.4.16 Beta 4
|
||||||
|
|
||||||
|
1) Only issue get_params() warnings under 'trace'
|
||||||
|
|
||||||
|
2) Add ppp support to Shorewall-init
|
||||||
|
|
||||||
Changes in Shorewall 4.4.16 Beta 3
|
Changes in Shorewall 4.4.16 Beta 3
|
||||||
|
|
||||||
1) Integrate bug catcher into 'trace' and correct handling of
|
1) Integrate bug catcher into 'trace' and correct handling of
|
||||||
|
@ -47,7 +47,7 @@ Beta 1
|
|||||||
I I I. N E W F E A T U R E S I N T H I S R E L E A S E
|
I I I. N E W F E A T U R E S I N T H I S R E L E A S E
|
||||||
----------------------------------------------------------------------------
|
----------------------------------------------------------------------------
|
||||||
|
|
||||||
None.
|
1) Shorewall-init now handles ppp devices.
|
||||||
|
|
||||||
----------------------------------------------------------------------------
|
----------------------------------------------------------------------------
|
||||||
I V. R E L E A S E 4 . 4 H I G H L I G H T S
|
I V. R E L E A S E 4 . 4 H I G H L I G H T S
|
||||||
|
Loading…
Reference in New Issue
Block a user