Fix typo in kvm-ifup script
authorMichael Hanselmann <hansmi@google.com>
Tue, 1 Mar 2011 17:32:40 +0000 (18:32 +0100)
committerMichael Hanselmann <hansmi@google.com>
Wed, 2 Mar 2011 09:59:03 +0000 (10:59 +0100)
Reported-by: Bas Tichelaar <bas@30loops.net>
Signed-off-by: Michael Hanselmann <hansmi@google.com>
Reviewed-by: Guido Trotter <ultrotter@google.com>

tools/kvm-ifup.in

index 364d3e6..370040c 100644 (file)
@@ -34,7 +34,7 @@ fi
 
 ip link set $INTERFACE up
 
-if [ "$MODE" == "bridged" ]; then
+if [ "$MODE" = "bridged" ]; then
        # Connect the interface to the bridge
        brctl addif $BRIDGE $INTERFACE
 else