source: trunk/packages/sipb-xen-autoinstaller/common/usr/sbin/sipb-xen-create-image @ 929

Last change on this file since 929 was 929, checked in by price, 16 years ago

factor out common autoinstaller code for both guest and host

File size: 494 bytes
Line 
1#!/bin/bash
2# Usage: no command-line args.
3# "arguments" come in environment:
4#  TARGET a device filename, IMAGESIZE its size in XXXX what unit?
5#  ARCH, DIST, MIRROR
6#  HOSTNAME, IP
7
8echo ,"${IMAGESIZE}"$',L,*\n,,S\n;\n;' | sfdisk -uM -H 255 -S 63 "$TARGET"
9
10xen-create-image --image-dev "${TARGET}1" --swap-dev "${TARGET}2" --fs ext3 --ide \
11 --hostname "$HOSTNAME" --ip="$IP" --netmask=255.255.0.0 --gateway=18.181.0.1 \
12 --arch "$ARCH" --dist "$DIST" --mirror "$MIRROR" --cache=yes
13
14exit 0
Note: See TracBrowser for help on using the repository browser.