mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-04-28 19:10:16 +00:00
9 lines
226 B
Bash
Executable File
9 lines
226 B
Bash
Executable File
#!/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
|