From: Arne Fitzenreiter Date: Wed, 11 Nov 2009 21:41:02 +0000 (+0100) Subject: Fix vlan remove syntax error at networking/red. X-Git-Tag: v2.9-beta1~611^2 X-Git-Url: http://git.ipfire.org/?p=ipfire-2.x.git;a=commitdiff_plain;h=715014d0c86966cd8de069d3991787dc57282f9f Fix vlan remove syntax error at networking/red. --- diff --git a/config/rootfiles/core/34/filelists/files b/config/rootfiles/core/34/filelists/files index 0037af1833..4da209c457 100644 --- a/config/rootfiles/core/34/filelists/files +++ b/config/rootfiles/core/34/filelists/files @@ -1 +1,2 @@ etc/system-release +etc/rc.d/init.d/networking/red diff --git a/src/initscripts/init.d/networking/red b/src/initscripts/init.d/networking/red index b694a3c04e..f24bdb3a06 100644 --- a/src/initscripts/init.d/networking/red +++ b/src/initscripts/init.d/networking/red @@ -568,7 +568,7 @@ case "${1}" in if echo "${link_status}" | grep -q UP; then boot_mesg "Bringing down the ${DEVICE}.${RED_VDSL_INET_VLAN} interface..." ip link set ${DEVICE}.${RED_VDSL_INET_VLAN} down - vconfig del ${DEVICE} ${RED_VDSL_INET_VLAN} + vconfig rem ${DEVICE}.${RED_VDSL_INET_VLAN} evaluate_retval fi else