95iscsi/iscsiroot: unset used variables before starting
If iscsiroot is called multiple times, then some variables can hold the values of a previous call, so unset all variables before using them. https://bugzilla.redhat.com/show_bug.cgi?id=752066master
parent
480d772f22
commit
43f2185221
|
|
@ -51,6 +51,11 @@ if getargbool 0 rd.iscsi.firmware -y iscsi_firmware ; then
|
|||
exit 0
|
||||
fi
|
||||
|
||||
unset iscsi_initiator iscsi_target_name iscsi_target_ip iscsi_target_port
|
||||
unset iscsi_target_group iscsi_protocol iscsirw iscsi_lun
|
||||
unset iscsi_username iscsi_password
|
||||
unset iscsi_in_username iscsi_in_password
|
||||
|
||||
# override conf settings by command line options
|
||||
arg=$(getargs rd.iscsi.initiator iscsi_initiator=)
|
||||
[ -n "$arg" ] && iscsi_initiator=$arg
|
||||
|
|
|
|||
Loading…
Reference in New Issue