Add the Anders invoke for dealing with kernel command line quoting in
[invirt/packages/invirt-autoinstaller.git] / common / usr / sbin / sipb-xen-create-image
1 #!/bin/bash
2 # Usage: no command-line args.
3 # "arguments" come in environment:
4 #  TARGET a device filename
5 #  FSSIZE the desired filesystem size in megabytes (rest will be swap)
6 #  ARCH, DIST, MIRROR
7 #  HOSTNAME, IP
8
9 set -e
10
11 echo ,"${FSSIZE}"$',L,*\n,,S\n;\n;' | sfdisk -uM -H 255 -S 63 "$TARGET"
12
13 dmsetup info "$TARGET" && kpartx -a "$TARGET"
14
15 xen-create-image --image-dev "${TARGET}1" --swap-dev "${TARGET}2" --fs ext3 --ide \
16  --hostname "$HOSTNAME" --ip="$IP" --netmask=255.255.0.0 --gateway=18.181.0.1 \
17  --arch "$ARCH" --dist "$DIST" --mirror "$MIRROR" --cache=yes
18
19 dmsetup info "$TARGET" && kpartx -d "$TARGET"
20
21 exit 0