Reynir Björnsson
7e4abc7baa
All checks were successful
continuous-integration/drone/push Build is passing
26 lines
629 B
Bash
Executable file
26 lines
629 B
Bash
Executable file
#!/bin/sh -ex
|
|
|
|
if [ "$#" -lt 1 ]; then
|
|
echo Must provide the unikernel as argument >&2
|
|
exit 2
|
|
fi
|
|
unikernel=$1
|
|
shift
|
|
ip=$(ip a show eth0 | awk '/inet/{print $2}') || {
|
|
echo Could not determine ip address >&2
|
|
exit 2
|
|
}
|
|
gateway=$(ip route show default | awk '/^default /{print $3}') || {
|
|
echo Could not determine default gateway >&2
|
|
exit 2
|
|
}
|
|
|
|
ip tuntap add mode tap name service
|
|
ip addr del "$ip" dev eth0
|
|
ip link add br0 type bridge
|
|
ip link set eth0 master br0
|
|
ip link set service master br0
|
|
ip link set br0 up
|
|
ip link set service up
|
|
solo5-spt --net:service=service -- "$unikernel" --ipv4="$ip" --ipv4-gateway="$gateway" "$@"
|