From: martin f. krafft Date: Wed, 26 Feb 2014 13:05:52 +0000 (+0100) Subject: Parametrise the network bridge X-Git-Url: https://git.madduck.net/code/vinst.git/commitdiff_plain/d97649fb0bfe21f6cc37571d47ae447083f7bb94 Parametrise the network bridge --- diff --git a/vinst b/vinst index c6abe72..73d50c4 100755 --- a/vinst +++ b/vinst @@ -100,8 +100,11 @@ if [ -n "$IPADDRESS" ]; then netcfg/get_gateway=$GATEWAY \ netcfg/get_nameservers=$NAMESERVER" + BRIDGE=wan + else extra_args="$extra_args netcfg/disable_dhcp=false" + BRIDGE=virt-br fi cat >&2 <<_eof @@ -109,6 +112,7 @@ cat >&2 <<_eof ram: $RAM MiB disk: $DISK GiB console: $CONSOLE +net bridge: $BRIDGE _eof if [ -n "$IPADDRESS" ]; then cat >&2 <<_eof @@ -129,7 +133,7 @@ exec virt-install --connect=$QEMU_URI \ -n $HOSTNAME \ -r $RAM \ --disk pool=default,size=$SIZE \ - -w bridge=virt-br \ + -w bridge=$BRIDGE \ --graphics=vnc \ --serial=pty \ --watchdog i6300esb,action=reset \