2 # Usage: no command-line args.
3 # "arguments" come in environment:
4 # TARGET a device filename
5 # FSSIZE the desired filesystem size in mebibytes (rest will be swap)
9 # Optional: GATEWAY, NETMASK. These default to values in invirt-getconf, if installed
13 if [ -z "$GATEWAY" ]; then
14 GATEWAY=$(invirt-getconf network.gateway)
17 if [ -z "$NETMASK" ]; then
18 NETMASK=$(invirt-getconf network.netmask)
21 echo ,"${FSSIZE}"$',L,*\n,,S\n;\n;' | sfdisk -uM -H 255 -S 63 "$TARGET"
23 dmsetup info "$TARGET" 2>/dev/null && kpartx -a "$TARGET"
25 xen-create-image --image-dev "${TARGET}1" --swap-dev "${TARGET}2" --fs ext3 --ide \
26 --hostname "$HOSTNAME" --ip="$IP" --netmask="$NETMASK" --gateway="$GATEWAY" \
27 --arch "$ARCH" --dist "$DIST" --mirror "$MIRROR" --cache=yes --verbose
29 dmsetup info "$TARGET" 2>/dev/null && kpartx -d "$TARGET"