Fix copy-paste errors when combining vswitchd & brcompatd init scripts
authorKeith Amidon <keith@nicira.com>
Wed, 29 Apr 2009 16:50:53 +0000 (09:50 -0700)
committerKeith Amidon <keith@nicira.com>
Wed, 29 Apr 2009 19:07:32 +0000 (12:07 -0700)
There were a couple of places where copied functionality from one
script was properly updated to work in the combined script.

vswitchd/etc/init.d/vswitch

index b9fd59d173388ff436beb9f3111884cf3040b50e..1a08166e7e17c0e0122a3cc48cbc09659e48c105 100755 (executable)
@@ -73,7 +73,7 @@ function ifdown_dp_intf {
     for dp in $(dp_list); do
         local intf=$(dp_intf $dp)
         if [ -e "/etc/sysconfig/network-scripts/ifcfg-$intf" ]; then
-            action "Bringing up datapath interface: $intf" ifdown "$intf"
+            action "Bringing down datapath interface: $intf" ifdown "$intf"
         fi
     done
 }
@@ -137,7 +137,7 @@ function remove_modules {
     if ! lsmod | grep -q "openflow_mod"; then
         action "Removing openflow module" rmmod openflow_mod.ko
     fi
-    if ! lsmod | grep -q "openflow_mod"; then
+    if ! lsmod | grep -q "brcompat_mod"; then
         action "Removing brcompat module" rmmod brcompat_mod.ko
     fi
 }