search for: ovirt_iscsi_chap_usernam

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

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.
...if [ -z "$REPLY" ]; then + OVIRT_ISCSI_TARGET_PORT="3260" + break; + else + 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: +=====...
2010 Mar 31
1
[PATCH node] Handle space in storage wwid
...quot; if [ -z "$REPLY" ]; then OVIRT_ISCSI_TARGET_PORT="3260" break; @@ -826,11 +826,11 @@ while true; do fi 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"...