From: Chris Lamb Date: Tue, 30 Sep 2008 23:57:25 +0000 (+0100) Subject: Be consistent in using 0/1 for True/False values instead of English representations. X-Git-Tag: debian/2.0.15-1~414 X-Git-Url: http://git.grml.org/?a=commitdiff_plain;h=9e2fdb9370c78d10088945e59f45b087b7fe6f37;p=live-boot-grml.git Be consistent in using 0/1 for True/False values instead of English representations. --- diff --git a/scripts/live b/scripts/live index 0f4ef0d..fd0da8b 100755 --- a/scripts/live +++ b/scripts/live @@ -1151,14 +1151,14 @@ setup_unionfs () # snapshots to be sure to really store some e.g key config files, # but not on the same media blacklistdev="${cowprobe}" - PERSISTENCE_IS_ON="Yes" + PERSISTENCE_IS_ON="1" export PERSISTENCE_IS_ON fi # homecow just mount something on /home, this should be generalized some way homecow=$(find_cow_device "${home_persistence}" "${blacklistdev}") if [ -b "${homecow}" ] then - PERSISTENCE_IS_ON="Yes" + PERSISTENCE_IS_ON="1" export PERSISTENCE_IS_ON fi root_snapdata=$(find_snap "${root_snapshot_label}" "${blacklistdev}")