diff options
author | Daniel Baumann <daniel@debian.org> | 2010-05-01 07:39:49 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 19:17:06 +0100 |
commit | 9326dc8b01231113d12417c4153a82cd3ab00029 (patch) | |
tree | ddfc094bbd8d4a742dff7cd780f3c20b8fcfe80f /helpers | |
parent | a09f55f6b36ee3f462253f0f116ceafb4e885360 (diff) | |
download | vyos-live-build-9326dc8b01231113d12417c4153a82cd3ab00029.tar.gz vyos-live-build-9326dc8b01231113d12417c4153a82cd3ab00029.zip |
Renaming md5sum helpers to checksums.
Diffstat (limited to 'helpers')
-rwxr-xr-x | helpers/binary | 2 | ||||
-rwxr-xr-x | helpers/binary_checksums (renamed from helpers/binary_md5sum) | 8 | ||||
-rwxr-xr-x | helpers/source | 2 | ||||
-rwxr-xr-x | helpers/source_checksums (renamed from helpers/source_md5sum) | 8 |
4 files changed, 10 insertions, 10 deletions
diff --git a/helpers/binary b/helpers/binary index 35c74de4f..9b1518974 100755 --- a/helpers/binary +++ b/helpers/binary @@ -65,7 +65,7 @@ lh binary_win32-loader ${*} lh binary_includes ${*} lh binary_local-includes ${*} lh binary_local-hooks ${*} -lh binary_md5sum ${*} +lh binary_checksums ${*} if [ "${LH_CHROOT_BUILD}" != "true" ] then diff --git a/helpers/binary_md5sum b/helpers/binary_checksums index e9376c082..2c507ad57 100755 --- a/helpers/binary_md5sum +++ b/helpers/binary_checksums @@ -1,6 +1,6 @@ #!/bin/sh -# lh_binary_md5sum(1) - create binary md5sums +# lh_binary_checksums(1) - create binary checksums # Copyright (C) 2006-2010 Daniel Baumann <daniel@debian.org> # # live-helper comes with ABSOLUTELY NO WARRANTY; for details see COPYING. @@ -13,7 +13,7 @@ set -e . "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh # Setting static variables -DESCRIPTION="$(Echo 'create binary md5sums')" +DESCRIPTION="$(Echo 'create binary checksums')" HELP="" USAGE="${PROGRAM} [--force]" @@ -34,7 +34,7 @@ Echo_message "Begin creating binary md5sum.txt..." Require_stagefile .stage/config .stage/bootstrap # Checking stage file -Check_stagefile .stage/binary_md5sum +Check_stagefile .stage/binary_checksums # Checking lock file Check_lockfile .lock @@ -70,4 +70,4 @@ find . | sed -e 's|^.||g' | grep "^/" | sort > ../binary.list cd "${OLDPWD}" # Creating stage file -Create_stagefile .stage/binary_md5sum +Create_stagefile .stage/binary_checksums diff --git a/helpers/source b/helpers/source index 512a9239a..8ba066b46 100755 --- a/helpers/source +++ b/helpers/source @@ -38,7 +38,7 @@ lh chroot_sources install ${*} lh source_debian-live ${*} lh source_debian ${*} lh source_disk ${*} -lh source_md5sum ${*} +lh source_checksums ${*} # Building images lh source_iso ${*} diff --git a/helpers/source_md5sum b/helpers/source_checksums index 0a543e788..31895db37 100755 --- a/helpers/source_md5sum +++ b/helpers/source_checksums @@ -1,6 +1,6 @@ #!/bin/sh -# lh_source_md5sum(1) - create source md5sums +# lh_source_checksums(1) - create source checksumss # Copyright (C) 2006-2010 Daniel Baumann <daniel@debian.org> # # live-helper comes with ABSOLUTELY NO WARRANTY; for details see COPYING. @@ -13,7 +13,7 @@ set -e . "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh # Setting static variables -DESCRIPTION="$(Echo 'create source md5sums')" +DESCRIPTION="$(Echo 'create source checksums')" HELP="" USAGE="${PROGRAM} [--force]" @@ -39,7 +39,7 @@ Echo_message "Begin creating source md5sum.txt..." Require_stagefile .stage/config .stage/source_debian # Checking stage file -Check_stagefile .stage/source_md5sum +Check_stagefile .stage/source_checksums # Checking lock file Check_lockfile .lock @@ -75,4 +75,4 @@ find . | sed -e 's|^.||g' | grep "^/" | sort > ../source.list cd "${OLDPWD}" # Creating stage file -Create_stagefile .stage/source_md5sum +Create_stagefile .stage/source_checksums |