Displaying 1 result from an estimated 1 matches for "initiator_file".
2009 Oct 23
1
[PATCH node] Add iSCSI initiator setup option
...'__st=$?; stop_log; exit $__st' 0
+trap 'exit $?' 1 2 13 15
+
+warn() { printf '%s\n' "$*" >&2; }
+
+if ! is_local_storage_configured; then
+ warn "Local storage must be configured prior to setting the iSCSI Initiator Name."
+ exit 99
+fi
+
+INITIATOR_FILE="/etc/iscsi/initiatorname.iscsi"
+
+function prompt_user {
+ printf "\n"
+ printf "Enter iSCSI Initiator Name (If blank one will be automatically generated)\n"
+ printf "Enter Q to quit\n"
+ read REPLY
+ if [[ $REPLY == "q" || $REPLY...