diff options
| author | Chris Lamb <lamby@debian.org> | 2008-10-01 00:57:25 +0100 |
|---|---|---|
| committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 17:48:02 +0100 |
| commit | 9e2fdb9370c78d10088945e59f45b087b7fe6f37 (patch) | |
| tree | dce7caf7bb69ced4c32121ef3873acec5321c92f /scripts | |
| parent | 2b0b270f2445897b6137fbe48919097ca42e9c9e (diff) | |
| download | live-boot-9e2fdb9370c78d10088945e59f45b087b7fe6f37.tar.gz live-boot-9e2fdb9370c78d10088945e59f45b087b7fe6f37.zip | |
Be consistent in using 0/1 for True/False values instead of English representations.
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/live | 4 |
1 files changed, 2 insertions, 2 deletions
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}") |
