diff options
author | Richard W.M. Jones <rjones@redhat.com> | 2010-12-21 17:23:08 +0000 |
---|---|---|
committer | Richard W.M. Jones <rjones@redhat.com> | 2010-12-21 17:23:08 +0000 |
commit | 49b2ae2e69e1a273b4d4a8746a872ec00b91c86f (patch) | |
tree | fad603e2bc2455e11e6ce65fc3e8acb3acc9389f /recipes/tar2vm.sh | |
parent | b1ca8b5fbb263fd945f21d0ccff99f40a59d562b (diff) | |
download | libguestfs-49b2ae2e69e1a273b4d4a8746a872ec00b91c86f.tar.gz libguestfs-49b2ae2e69e1a273b4d4a8746a872ec00b91c86f.tar.xz libguestfs-49b2ae2e69e1a273b4d4a8746a872ec00b91c86f.zip |
recipes: Refresh guestfish recipes.
Diffstat (limited to 'recipes/tar2vm.sh')
-rwxr-xr-x | recipes/tar2vm.sh | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/recipes/tar2vm.sh b/recipes/tar2vm.sh index 713e9e3c..12d8c7a7 100755 --- a/recipes/tar2vm.sh +++ b/recipes/tar2vm.sh @@ -1,11 +1,11 @@ #!/bin/sh - guestfish <<EOF -alloc $2 $3 -run -part-disk /dev/sda mbr -mkfs ext3 /dev/sda1 -mount /dev/sda1 / -tgz-in $1 / -umount-all + alloc $2 $3 + run + part-disk /dev/sda mbr + mkfs ext3 /dev/sda1 + mount /dev/sda1 / + tgz-in $1 / + umount-all EOF |