From: <dha...@us...> - 2006-08-11 21:10:25
|
Revision: 243 Author: dhartman Date: 2006-08-11 14:10:22 -0700 (Fri, 11 Aug 2006) ViewCVS: http://svn.sourceforge.net/astlinux/?rev=243&view=rev Log Message: ----------- init script and arno-firewall.mk typos Modified Paths: -------------- trunk/package/arno-fw/arno-firewall.mk trunk/package/iptables/iptables.init Modified: trunk/package/arno-fw/arno-firewall.mk =================================================================== --- trunk/package/arno-fw/arno-firewall.mk 2006-08-11 19:31:56 UTC (rev 242) +++ trunk/package/arno-fw/arno-firewall.mk 2006-08-11 21:10:22 UTC (rev 243) @@ -3,7 +3,7 @@ # Arno's IPtables Firewall Script # ############################################################# -ARNO_FW_DIR:=package/arno_fw +ARNO_FW_DIR:=package/arno-fw ARNO_FW_TARGET_BINARY=$(TARGET_DIR)/usr/sbin/arno-iptables-firewall $(ARNO_FW_TARGET_BINARY): Modified: trunk/package/iptables/iptables.init =================================================================== --- trunk/package/iptables/iptables.init 2006-08-11 19:31:56 UTC (rev 242) +++ trunk/package/iptables/iptables.init 2006-08-11 21:10:22 UTC (rev 243) @@ -5,7 +5,7 @@ start () { if [ "$INTIF" ] then -if [ $FWVERS = arno ] +if [ "$FWVERS" = "arno" ] then /usr/sbin/arno-iptables-firewall start else @@ -23,7 +23,7 @@ stop () { if [ "$INTIF" ] then -if [ $FWVERS = arno ] +if [ "$FWVERS" = "arno" ] then /usr/sbin/arno-iptables-firewall stop else This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |