diff options
-rw-r--r-- | ryu/tests/integrated/test_vrrp_multi.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ryu/tests/integrated/test_vrrp_multi.sh b/ryu/tests/integrated/test_vrrp_multi.sh index fcf4cb0f..5118cf7d 100644 --- a/ryu/tests/integrated/test_vrrp_multi.sh +++ b/ryu/tests/integrated/test_vrrp_multi.sh @@ -16,8 +16,9 @@ # See the License for the specific language governing permissions and # limitations under the License. -VSCTL=ovs-vsctl -#VSCTL=${HOME}/ovs/bin/ovs-vsctl +if [ -z "$VSCTL" ]; then + VSCTL=ovs-vsctl +fi # create two bridges. # conncect them using patch ports. |