Remove old contrib/febootstrap directory.
authorRichard Jones <rjones@redhat.com>
Thu, 26 Nov 2009 14:34:35 +0000 (14:34 +0000)
committerRichard Jones <rjones@redhat.com>
Thu, 26 Nov 2009 14:34:35 +0000 (14:34 +0000)
contrib/README
contrib/febootstrap/install.html [deleted file]
contrib/febootstrap/install.sh [deleted file]
contrib/febootstrap/install.title [deleted file]

index 4f7329f..2ae2c51 100644 (file)
@@ -5,6 +5,7 @@ centos5.3-libguestfs.spec
         http://cvs.fedoraproject.org/viewvc/rpms/libguestfs/EL-5/
 
 febootstrap/
+        [REMOVED]
         An experimental, non-working attempt to use febootstrap
         to install operating systems.
 
diff --git a/contrib/febootstrap/install.html b/contrib/febootstrap/install.html
deleted file mode 100644 (file)
index 5e5521b..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-<p>
-This script shows how to make a fresh virtual machine, installing an
-operating system like Fedora or some Red Hat-derived operating system
-such as <a href="http://www.redhat.com/rhel/">Red Hat Enterprise
-Linux</a> or <a href="http://centos.org/">CentOS</a>.
-</p>
-
-<p>
-It's fairly easy to modify this script to install Debian derivatives
-too (even from a Fedora host),
-using <a href="http://packages.debian.org/stable/admin/debootstrap">debootstrap</a>.
-</p>
-
-<p>
-<i>After</i> running the script, you can boot the new virtual
-machine by doing:
-</p>
-
-<pre>
-qemu-kvm -m 512 -hda /tmp/vm.img
-</pre>
diff --git a/contrib/febootstrap/install.sh b/contrib/febootstrap/install.sh
deleted file mode 100755 (executable)
index 9d86d60..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-#!/bin/sh -
-
-#vm=/tmp/vm.img
-vm=/mnt/share/tmp/vm.img
-
-modules="--group-install Core -i kernel -i grub"
-
-# Choose one:
-#febootstrap $modules fedora-10 local
-febootstrap $modules fedora-11 local
-#febootstrap $modules centos-5 local http://mirror.centos.org/centos-5/5.3/os/i386/
-
-tar zcf local.tar.gz local
-#rm -rf local
-
-guestfish <<EOF
-#alloc $vm 8GB
-add $vm
-run
-sfdisk /dev/sda 0 0 0 ',100 ,'
-echo Size of /dev/sda1:
-blockdev-getsize64 /dev/sda1
-echo Size of /dev/sda2:
-blockdev-getsize64 /dev/sda2
-lvm-remove-all
-pvcreate /dev/sda2
-vgcreate VG /dev/sda2
-lvcreate Root VG 6000
-lvcreate Swap VG 500
-mkfs ext3 /dev/sda1
-mkfs ext3 /dev/VG/Root
-mount /dev/VG/Root /
-mkdir /boot
-mount /dev/sda1 /boot
-tgz-in local.tar.gz /
-grub-install / /dev/sda
-EOF
-
-#rm local.tar.gz
diff --git a/contrib/febootstrap/install.title b/contrib/febootstrap/install.title
deleted file mode 100644 (file)
index 00d6b1b..0000000
+++ /dev/null
@@ -1 +0,0 @@
-Fresh install of Fedora or a Red Hat-derived operating system
\ No newline at end of file