|
Last change
on this file since 1488 was
1147,
checked in by price, 17 years ago
|
|
autoinstaller: hide misleading harmless dmsetup error message
|
|
File size:
659 bytes
|
| Line | |
|---|
| 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" 2>/dev/null && 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 --verbose |
|---|
| 18 | |
|---|
| 19 | dmsetup info "$TARGET" 2>/dev/null && kpartx -d "$TARGET" |
|---|
| 20 | |
|---|
| 21 | exit 0 |
|---|
Note: See
TracBrowser
for help on using the repository browser.