diff options
author | Daniel Baumann <daniel@debian.org> | 2012-06-05 16:39:52 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2012-06-05 19:35:56 +0200 |
commit | 97c0e08bd0f00264eb3c2c5896a28e25a89d9f6f (patch) | |
tree | ff2720832bf061beb2ab505599667b7be1de0137 /scripts/boot/mount-iscsi.sh | |
parent | d16c9d87a189d136231a48f6ccd1fd54d4debaf5 (diff) | |
download | live-boot-97c0e08bd0f00264eb3c2c5896a28e25a89d9f6f.tar.gz live-boot-97c0e08bd0f00264eb3c2c5896a28e25a89d9f6f.zip |
Consistenly using 'true' instead of 'Yes' or 'yes' when using booleans.
Diffstat (limited to 'scripts/boot/mount-iscsi.sh')
-rwxr-xr-x | scripts/boot/mount-iscsi.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/boot/mount-iscsi.sh b/scripts/boot/mount-iscsi.sh index 35e2b46..fd29d91 100755 --- a/scripts/boot/mount-iscsi.sh +++ b/scripts/boot/mount-iscsi.sh @@ -8,7 +8,7 @@ do_iscsi() #modprobe ib_iser modprobe iscsi_tcp local debugopt="" - [ "${DEBUG}" = "Yes" ] && debugopt="-d 8" + [ "${DEBUG}" = "true" ] && debugopt="-d 8" #FIXME this name is supposed to be unique - some date + ifconfig hash? ISCSI_INITIATORNAME="iqn.1993-08.org.debian.live:01:$(echo "${HWADDR}" | sed -e s/://g)" export ISCSI_INITIATORNAME |