4aa328d7c1
Update to v2.8.0, including integration of SLE qemu package so we are "Factory First" again for SLE qemu. Includes some spec file tweaks/cleanups as well. A number of post v2.8.0 security fixes are also included. OBS-URL: https://build.opensuse.org/request/show/461715 OBS-URL: https://build.opensuse.org/package/show/Virtualization/qemu?expand=0&rev=329
24 lines
659 B
Bash
24 lines
659 B
Bash
#!/bin/sh
|
|
|
|
# sample bridge qemu-ifup script
|
|
|
|
echo 'configuring qemu network with bridge for' $*
|
|
|
|
# If bridge is not specified, try device with default route.
|
|
bridge=$2
|
|
if [ -z "$bridge" ]; then
|
|
bridge=$(/sbin/ip route list | /usr/bin/awk '/^default / { print $5 }')
|
|
fi
|
|
|
|
# Exit if $bridge is not a bridge. Exit with 0 status
|
|
# so qemu process is not terminated and provide message
|
|
# about failure to setup network.
|
|
if [ ! -e "/sys/class/net/${bridge}/bridge" ]
|
|
then
|
|
echo "WARNING! ${bridge} is not a bridge. qemu-ifup exiting. VM may not have a functioning networking stack."
|
|
exit 0
|
|
fi
|
|
|
|
/sbin/ip link set $1 up
|
|
/sbin/brctl addif $bridge $1 || true
|