-Déplacé nano du stage3 au stage 2 (car causait problème vu qu'on enlève /tools à...
[hvlinux.git] / stage2 / bootscripts / ifdown
index cc0951a..52a20df 100755 (executable)
@@ -23,7 +23,7 @@ check_brctl()
     fi
 }
 
-if [ "$BOOTPROTO" == "dhcp" ]; then
+if [ "x${BOOTPROTO}" = "xdhcp" ]; then
     # DHCP configuration
 
     # Load DHCP client parameters
@@ -54,7 +54,7 @@ if [ -n "${BRIDGE_TO}" ]; then
 fi
 
 # Determining if the interface is a bridge:
-if [ "x${BRIDGE}" == "xyes" ]; then
+if [ "x${BRIDGE}" = "xyes" ]; then
     # Check that the brctl program is present and executable.
     if [ ! -x ${BRCTL} ]; then
         msg_log "*** ERROR: /usr/sbin/brctl not found."