diff options
author | YAMAMOTO Takashi <yamamoto@valinux.co.jp> | 2014-02-21 17:14:06 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2014-03-25 23:22:14 +0900 |
commit | a9d7f1b199e8bedfd6795c45e2ee92284267c641 (patch) | |
tree | 9ad64ebbe4e2f55d56276d360e35cef671ca2760 | |
parent | 1c8f3b2c33ace91878ae5300a81e479b98cb3c02 (diff) |
test_vrrp_multi.sh: allow overriding ovs-vsctl
Signed-off-by: YAMAMOTO Takashi <yamamoto@valinux.co.jp>
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
-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. |