diff options
author | Daniel Baumann <daniel@debian.org> | 2007-09-23 10:04:50 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 18:18:29 +0100 |
commit | 4739146fc6c4de8b16418517bb882312c475195c (patch) | |
tree | a3c29d97d1ead4ad4fa532b1c6bfdb419f160e71 /helpers/lh_source_md5sum | |
parent | 1863ed88740575342008ac5f694d03e944bcece2 (diff) | |
download | vyos-live-build-4739146fc6c4de8b16418517bb882312c475195c.tar.gz vyos-live-build-4739146fc6c4de8b16418517bb882312c475195c.zip |
Adding live-helper 1.0~a6-1.
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 |