Perry Myers
2008-Oct-14 17:01 UTC
[Ovirt-devel] [PATCH appliance] Fix fake node installation options to be a little more sane
Since everyone uses node3 as a smoke test node, I've purposed
node3-5 as follows:
node3 - No config persistence, always PXE boots and does not use disk image
node4 - Uses config persistence, always PXE boots
node5 - Installs on first PXE boot to hard disk. Need to toggle to hd boot
after initial boot
This ordering seems better and will cause less problems with people
still transitioning off of the fake nodes.
Signed-off-by: Perry Myers <pmyers at redhat.com>
---
ovirt-appliance.ks | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/ovirt-appliance.ks b/ovirt-appliance.ks
index 0497768..ab904ac 100644
--- a/ovirt-appliance.ks
+++ b/ovirt-appliance.ks
@@ -125,11 +125,11 @@ cobbler distro add --name="oVirt-Node-$arch"
--arch=$arch \
--kopts="rootflags=loop root=/ovirt-node-image.iso rootfstype=iso9660 ro
console=ttyS0,115200n8 console=tty0"
cobbler profile add --name=oVirt-Node-$arch --distro=oVirt-Node-$arch
cobbler system add --netboot-enabled=1 --profile=oVirt-Node-$arch \
- --name=node3 --mac=00:16:3e:12:34:57 --kopts="ovirt_init=scsi"
+ --name=node3 --mac=00:16:3e:12:34:57
cobbler system add --netboot-enabled=1 --profile=oVirt-Node-$arch \
- --name=node4 --mac=00:16:3e:12:34:58 --kopts="ovirt_init=scsi
ovirt_local_boot"
+ --name=node4 --mac=00:16:3e:12:34:58 --kopts="ovirt_init=scsi"
cobbler system add --netboot-enabled=1 --profile=oVirt-Node-$arch \
- --name=node5 --mac=00:16:3e:12:34:59
+ --name=node5 --mac=00:16:3e:12:34:59 --kopts="ovirt_init=scsi
ovirt_local_boot"
set +x
echo "Add new oVirt Nodes as Cobbler systems to make them PXE boot oVirt
Node image directly."
echo "oVirt-Node-$arch is also default boot option in Cobbler menu"
--
1.5.5.1
Perry Myers
2008-Oct-14 17:07 UTC
[Ovirt-devel] Re: [PATCH appliance] Fix fake node installation options to be a little more sane
Perry Myers wrote:> Since everyone uses node3 as a smoke test node, I've purposed > node3-5 as follows: > > node3 - No config persistence, always PXE boots and does not use disk image > node4 - Uses config persistence, always PXE boots > node5 - Installs on first PXE boot to hard disk. Need to toggle to hd boot > after initial boot > > This ordering seems better and will cause less problems with people > still transitioning off of the fake nodes.Ignore this... Alan had already fixed this... Perry