search for: ovirt_iscsi_chap_password

Displaying 2 results from an estimated 2 matches for "ovirt_iscsi_chap_password".

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.
...lse + break; + fi + + elif [ "$OPTION" == "CHAP Username" ]; then + OVIRT_ISCSI_CHAP_USERNAME=$REPLY + break + + elif [ "$OPTION" == "CHAP Password" ]; then + OVIRT_ISCSI_CHAP_PASSWORD=$REPLY + break; + fi + done + done + + cat <<EOF + +The iSCSI target be configured as follows: +================================================ + Target IP: $OVIRT_ISCSI_TARGET_IP + Target Port: $OVIRT_ISCSI_TARGET_PORT + +EOF +# Username:...
2010 Mar 31
1
[PATCH node] Handle space in storage wwid
...elif [ "$OPTION" == "CHAP Username" ]; then - OVIRT_ISCSI_CHAP_USERNAME=$REPLY + OVIRT_ISCSI_CHAP_USERNAME="$REPLY" break elif [ "$OPTION" == "CHAP Password" ]; then - OVIRT_ISCSI_CHAP_PASSWORD=$REPLY + OVIRT_ISCSI_CHAP_PASSWORD="$REPLY" break; fi done @@ -868,7 +868,7 @@ set /files/etc/default/ovirt/OVIRT_ISCSI_CHAP_PASSWORD $OVIRT_ISCSI_CHAP_PASSWOR EOF fi - iscsiadm -p $OVIRT_ISCSI_TARGET_IP:$OVIRT_ISCSI_TARGET_P...