Removed opendaylight build capabilities as a preparation toward Arno SR1
[genesis.git] / fuel / build / f_odl_docker / scripts / setup_ovs_for_odl.sh
1 #!/bin/bash
2
3
4
5 ok .. so they created br-int
6
7 so lets add a physical nic to it
8
9
10 # First - Removal all the bridges you find
11
12 for i in $(ovs-vsctl list-br)
13 do
14         if [ "$i" == "br-int" ];
15         then    
16                 echo "skipped br-int"
17         elif [ "$i" == "br-prv"];
18         then
19                 echo "skipped br-pr"
20         else
21                 ovs-vsctl del-br $i
22         fi
23 done