X-Git-Url: https://git.madduck.net/code/vinst.git/blobdiff_plain/371c3a846758cc0ef0aa0c7ecd9fc5071b7725ad..2f23291d531ff587ecdced6bd0431a060fc0b5a9:/vinst?ds=inline diff --git a/vinst b/vinst index c6abe72..e931fc3 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 @@ -128,8 +132,8 @@ exit 0 exec virt-install --connect=$QEMU_URI \ -n $HOSTNAME \ -r $RAM \ - --disk pool=default,size=$SIZE \ - -w bridge=virt-br \ + --disk vol=$STORAGE_POOL/virt-$HOSTNAME \ + -w bridge=$BRIDGE \ --graphics=vnc \ --serial=pty \ --watchdog i6300esb,action=reset \