search for: ovirt_iscsi_node_name

Displaying 3 results from an estimated 3 matches for "ovirt_iscsi_node_name".

2009 Dec 08
1
[PATCH node] iscsi remote root basework This lays most of the groundwork for iscsi installation and configuration. At this time configuring iscsi is disabled due to multiple issues with dependent pieces.
...otparams="ro root=LABEL=Root roottypefs=ext3 console=tty0 \ + if [ "$OVIRT_ISCSI_ENABLED" == "y" ]; then + bootparams="ro root=LABEL=live:Root roottypefs=ext3 console=tty0 \ + netroot=iscsi:$OVIRT_ISCSI_TARGET_IP::$OVIRT_ISCSI_TARGET_PORT::$OVIRT_ISCSI_NODE_NAME ip=eth0:dhcp" + else + bootparams="ro root=LABEL=live:Root roottypefs=ext3 console=tty0 \ $(echo $bootparams | sed s/console=tty0//g)" - cat > /liveos/boot/grub/grub.conf << EOF + fi + cat > $grub_dir/grub.conf << EOF default=0...
2010 Oct 26
0
[PATCH node] add install.py
...+ if OVIRT_VARS.has_key("OVIRT_ISCSI_ENABLED") and OVIRT_VARS["OVIRT_ISCSI_ENABLED"] == "y": + bootparams="ro root=LABEL=ovirt-node-root roottypefs=ext3 console=tty0 \ + netroot=iscsi:$OVIRT_ISCSI_TARGET_IP::$OVIRT_ISCSI_TARGET_PORT::$OVIRT_ISCSI_NODE_NAME ip=eth0:dhcp" + else: + bootparams="ro root=live:LABEL=Root roottypefs=ext3 console=tty0 \ + $(echo $bootparams | sed s/console=tty0//g)" + grub_config_file = "%s/grub.conf" % grub_dir + GRUB_CONFIG_TEMPLATE = """ +default=0 +ti...
2009 Dec 10
0
[PATCH node] Enables stateless iscsi remote boot
..._ISCSI_ENABLED" == "y" ]; then - bootparams="ro root=LABEL=live:Root roottypefs=ext3 console=tty0 \ + bootparams="ro root=LABEL=ovirt-node-root roottypefs=ext3 console=tty0 \ netroot=iscsi:$OVIRT_ISCSI_TARGET_IP::$OVIRT_ISCSI_TARGET_PORT::$OVIRT_ISCSI_NODE_NAME ip=eth0:dhcp" else - bootparams="ro root=LABEL=live:Root roottypefs=ext3 console=tty0 \ + bootparams="ro root=live:LABEL=Root roottypefs=ext3 console=tty0 \ $(echo $bootparams | sed s/console=tty0//g)" fi cat > $grub_dir/grub.conf...