diff options
Diffstat (limited to 'helpers/lh_source_md5sum')
-rwxr-xr-x | helpers/lh_source_md5sum | 44 |
1 files changed, 23 insertions, 21 deletions
diff --git a/helpers/lh_source_md5sum b/helpers/lh_source_md5sum index 8fc2b39c9..e17566362 100755 --- a/helpers/lh_source_md5sum +++ b/helpers/lh_source_md5sum @@ -33,31 +33,33 @@ Set_defaults Breakpoint "source_md5sum: Init" -if [ "${LIVE_SOURCE}" = "enabled" ] +if [ "${LIVE_SOURCE}" != "enabled" ] then - # Requiring stage file - Require_stagefile .stage/source_download - - # Checking lock file - Check_lockfile .lock + exit 0 +fi - # Creating lock file - Create_lockfile .lock +# Requiring stage file +Require_stagefile .stage/source_download - # Checking stage file - Check_stagefile .stage/source_md5sum +# Checking stage file +Check_stagefile .stage/source_md5sum - # Remove old md5sums - if [ -f source/md5sum.txt ] - then - rm -f source/md5sum.txt - fi +# Checking lock file +Check_lockfile .lock - # Calculating md5sums - cd source - find . -type f -print0 | xargs -0 md5sum > md5sum.txt - cd "${OLDPWD}" +# Creating lock file +Create_lockfile .lock - # Creating stage file - Create_stagefile .stage/source_md5sum +# Remove old md5sums +if [ -f source/md5sum.txt ] +then + rm -f source/md5sum.txt fi + +# Calculating md5sums +cd source +find . -type f -print0 | xargs -0 md5sum > md5sum.txt +cd "${OLDPWD}" + +# Creating stage file +Create_stagefile .stage/source_md5sum |