diff options
Diffstat (limited to 'scripts/boot.sh')
| -rwxr-xr-x | scripts/boot.sh | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/scripts/boot.sh b/scripts/boot.sh index 90750b5..2fe563e 100755 --- a/scripts/boot.sh +++ b/scripts/boot.sh @@ -512,10 +512,11 @@ mountroot () panic "Unable to find a medium containing a live file system" fi - if [ "${INTEGRITY_CHECK}" ] - then - integrity_check "${livefs_root}" - fi + case "${LIVE_VERIFY_CHECKSUMS}" in + true) + Verify_checksums "${livefs_root}" + ;; + esac if [ "${TORAM}" ] then |
