You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
432 B
20 lines
432 B
10 months ago
|
#!/bin/bash
|
||
|
# Author : Madhurranjan Mohaan <madhurranjan.mohaan@gmail.com>
|
||
|
|
||
|
if [ "$CONTAINERTEST" -eq "1" ]; then
|
||
|
t_Log "Running in container -> SKIP"
|
||
|
exit 0
|
||
|
fi
|
||
|
|
||
|
. "$(dirname "$0")"/p_bridge-utils-functions
|
||
|
#add bridge
|
||
|
bridge=testbridge2
|
||
|
bru_add_bridge $bridge >/dev/null
|
||
|
|
||
|
t_Log "Running $0 - Deleting the dummy bridge: $bridge"
|
||
|
|
||
|
t_Log "Deleting bridge $bridge"
|
||
|
ret_val=$(bru_del_bridge $bridge)
|
||
|
|
||
|
t_CheckExitStatus $ret_val
|