blob: 9a45c722f1b8374a865d62aebda32ee61061597e (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/bash
if [ $(uname -a | grep -ci Ubuntu) -ge 1 ]; then
#for topotests under ubuntu host
sudo modprobe mpls-router mpls-iptunnel
sudo /etc/init.d/openvswitch-switch start
fi
while true ; do sleep 365d ; done
|