diff options
Diffstat (limited to 'helpers/lh_binary_md5sum')
-rwxr-xr-x | helpers/lh_binary_md5sum | 27 |
1 files changed, 9 insertions, 18 deletions
diff --git a/helpers/lh_binary_md5sum b/helpers/lh_binary_md5sum index 9ab3f35a4..cd925d9bf 100755 --- a/helpers/lh_binary_md5sum +++ b/helpers/lh_binary_md5sum @@ -16,36 +16,27 @@ Read_conffile config/image Set_defaults # Requiring stage file -Require_stagefile "${LIVE_ROOT}"/.stage/bootstrap +Require_stagefile .stage/bootstrap # Checking lock file -Check_lockfile "${LIVE_ROOT}"/.lock +Check_lockfile .lock # Creating lock file -Create_lockfile "${LIVE_ROOT}"/.lock +Create_lockfile .lock # Checking stage file -Check_stagefile "${LIVE_ROOT}"/.stage/binary_md5sum +Check_stagefile .stage/binary_md5sum # Remove old md5sums -if [ -f "${LIVE_ROOT}"/binary/md5sum.txt ] +if [ -f binary/md5sum.txt ] then - rm -f "${LIVE_ROOT}"/binary/md5sum.txt + rm -f binary/md5sum.txt fi # Calculating md5sums -cd "${LIVE_ROOT}"/binary -find . -type f -print0 | xargs -0 md5sum > "${LIVE_ROOT}"/md5sum.txt +cd binary +find . -type f -print0 | xargs -0 md5sum > md5sum.txt cd "${OLDPWD}" -if [ -d "${LIVE_INCLUDE_IMAGE}" ] -then - cd "${LIVE_INCLUDE_IMAGE}" - find . -type f -print0 | xargs -0 md5sum >> "${LIVE_ROOT}"/md5sum.txt - cd "${OLDPWD}" -fi - -mv "${LIVE_ROOT}"/md5sum.txt "${LIVE_ROOT}"/binary - # Creating stage file -Create_stagefile "${LIVE_ROOT}"/.stage/binary_md5sum +Create_stagefile .stage/binary_md5sum |