source: package_branches/invirt-xen-config/hvirt/qemu-ifup.invirt @ 2971

Last change on this file since 2971 was 1260, checked in by broder, 15 years ago

Divert /etc/xen/qemu-ifup instead of just scribbling over it

  • Property svn:executable set to *
File size: 315 bytes
Line 
1#!/bin/sh
2
3echo "config qemu network with xen bridge for $@"
4
5if [ -z "$domid" ]; then
6    echo "domid is not set!!!" >&2
7    exit 1
8fi
9
10dev=$1
11qemu_online=yes
12XENBUS_PATH=/local/domain/0/backend/vif/${domid}/0
13vif=vif${domid}.0
14export vif qemu_online XENBUS_PATH dev
15
16exec /etc/xen/scripts/vif-invirtroute online
Note: See TracBrowser for help on using the repository browser.