From 9326dc8b01231113d12417c4153a82cd3ab00029 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 1 May 2010 07:39:49 +0200 Subject: Renaming md5sum helpers to checksums. --- helpers/binary | 2 +- helpers/binary_checksums | 73 ++++++++++++++++++++++++++++++++++++++++++++ helpers/binary_md5sum | 73 -------------------------------------------- helpers/source | 2 +- helpers/source_checksums | 78 ++++++++++++++++++++++++++++++++++++++++++++++++ helpers/source_md5sum | 78 ------------------------------------------------ 6 files changed, 153 insertions(+), 153 deletions(-) create mode 100755 helpers/binary_checksums delete mode 100755 helpers/binary_md5sum create mode 100755 helpers/source_checksums delete mode 100755 helpers/source_md5sum (limited to 'helpers') 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_checksums b/helpers/binary_checksums new file mode 100755 index 000000000..2c507ad57 --- /dev/null +++ b/helpers/binary_checksums @@ -0,0 +1,73 @@ +#!/bin/sh + +# lh_binary_checksums(1) - create binary checksums +# Copyright (C) 2006-2010 Daniel Baumann +# +# live-helper comes with ABSOLUTELY NO WARRANTY; for details see COPYING. +# This is free software, and you are welcome to redistribute it +# under certain conditions; see COPYING for details. + +set -e + +# Including common functions +. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh + +# Setting static variables +DESCRIPTION="$(Echo 'create binary checksums')" +HELP="" +USAGE="${PROGRAM} [--force]" + +Arguments "${@}" + +# Reading configuration files +Read_conffiles config/all config/common config/bootstrap config/chroot config/binary config/source +Set_defaults + +if [ "${LH_CHECKSUMS}" != "true" ] || [ "${LH_BINARY_IMAGES}" = "virtual-hdd" ] +then + exit 0 +fi + +Echo_message "Begin creating binary md5sum.txt..." + +# Requiring stage file +Require_stagefile .stage/config .stage/bootstrap + +# Checking stage file +Check_stagefile .stage/binary_checksums + +# Checking lock file +Check_lockfile .lock + +# Creating lock file +Create_lockfile .lock + +# Remove old md5sums +if [ -f binary/md5sum.txt ] +then + rm -f binary/md5sum.txt +fi + +# Calculating md5sums +cd binary +find . -type f \! -path './isolinux/isolinux.bin' \! -path './boot/grub/stage2_eltorito' -print0 | sort -z | xargs -0 md5sum > ../md5sum.txt + +cat > md5sum.txt << EOF +This file contains the list of md5 checksums of all files on this medium. + +You can verify them automatically with the 'integrity-check' boot parameter, +or, manually with: 'md5sum -c md5sum.txt'. + + +EOF + +cat ../md5sum.txt >> md5sum.txt +rm -f ../md5sum.txt + +# File list +find . | sed -e 's|^.||g' | grep "^/" | sort > ../binary.list + +cd "${OLDPWD}" + +# Creating stage file +Create_stagefile .stage/binary_checksums diff --git a/helpers/binary_md5sum b/helpers/binary_md5sum deleted file mode 100755 index e9376c082..000000000 --- a/helpers/binary_md5sum +++ /dev/null @@ -1,73 +0,0 @@ -#!/bin/sh - -# lh_binary_md5sum(1) - create binary md5sums -# Copyright (C) 2006-2010 Daniel Baumann -# -# live-helper comes with ABSOLUTELY NO WARRANTY; for details see COPYING. -# This is free software, and you are welcome to redistribute it -# under certain conditions; see COPYING for details. - -set -e - -# Including common functions -. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh - -# Setting static variables -DESCRIPTION="$(Echo 'create binary md5sums')" -HELP="" -USAGE="${PROGRAM} [--force]" - -Arguments "${@}" - -# Reading configuration files -Read_conffiles config/all config/common config/bootstrap config/chroot config/binary config/source -Set_defaults - -if [ "${LH_CHECKSUMS}" != "true" ] || [ "${LH_BINARY_IMAGES}" = "virtual-hdd" ] -then - exit 0 -fi - -Echo_message "Begin creating binary md5sum.txt..." - -# Requiring stage file -Require_stagefile .stage/config .stage/bootstrap - -# Checking stage file -Check_stagefile .stage/binary_md5sum - -# Checking lock file -Check_lockfile .lock - -# Creating lock file -Create_lockfile .lock - -# Remove old md5sums -if [ -f binary/md5sum.txt ] -then - rm -f binary/md5sum.txt -fi - -# Calculating md5sums -cd binary -find . -type f \! -path './isolinux/isolinux.bin' \! -path './boot/grub/stage2_eltorito' -print0 | sort -z | xargs -0 md5sum > ../md5sum.txt - -cat > md5sum.txt << EOF -This file contains the list of md5 checksums of all files on this medium. - -You can verify them automatically with the 'integrity-check' boot parameter, -or, manually with: 'md5sum -c md5sum.txt'. - - -EOF - -cat ../md5sum.txt >> md5sum.txt -rm -f ../md5sum.txt - -# File list -find . | sed -e 's|^.||g' | grep "^/" | sort > ../binary.list - -cd "${OLDPWD}" - -# Creating stage file -Create_stagefile .stage/binary_md5sum 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_checksums b/helpers/source_checksums new file mode 100755 index 000000000..31895db37 --- /dev/null +++ b/helpers/source_checksums @@ -0,0 +1,78 @@ +#!/bin/sh + +# lh_source_checksums(1) - create source checksumss +# Copyright (C) 2006-2010 Daniel Baumann +# +# live-helper comes with ABSOLUTELY NO WARRANTY; for details see COPYING. +# This is free software, and you are welcome to redistribute it +# under certain conditions; see COPYING for details. + +set -e + +# Including common functions +. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh + +# Setting static variables +DESCRIPTION="$(Echo 'create source checksums')" +HELP="" +USAGE="${PROGRAM} [--force]" + +Arguments "${@}" + +# Reading configuration files +Read_conffiles config/all config/common config/bootstrap config/chroot config/binary config/source +Set_defaults + +if [ "${LH_SOURCE}" != "true" ] +then + exit 0 +fi + +if [ "${LH_CHECKSUMS}" != "true" ] +then + exit 0 +fi + +Echo_message "Begin creating source md5sum.txt..." + +# Requiring stage file +Require_stagefile .stage/config .stage/source_debian + +# Checking stage file +Check_stagefile .stage/source_checksums + +# Checking lock file +Check_lockfile .lock + +# Creating lock file +Create_lockfile .lock + +# Remove old md5sums +if [ -f source/md5sum.txt ] +then + rm -f source/md5sum.txt +fi + +# Calculating md5sums +cd source +find . -type f -print0 | sort -z | xargs -0 md5sum > ../md5sum.txt + +cat > md5sum.txt << EOF +This file contains the list of md5 checksums of all files on this medium. + +You can verify them automatically with the 'integrity-check' boot parameter, +or, manually with: 'md5sum -c md5sum.txt'. + + +EOF + +cat ../md5sum.txt >> md5sum.txt +rm -f ../md5sum.txt + +# File list +find . | sed -e 's|^.||g' | grep "^/" | sort > ../source.list + +cd "${OLDPWD}" + +# Creating stage file +Create_stagefile .stage/source_checksums diff --git a/helpers/source_md5sum b/helpers/source_md5sum deleted file mode 100755 index 0a543e788..000000000 --- a/helpers/source_md5sum +++ /dev/null @@ -1,78 +0,0 @@ -#!/bin/sh - -# lh_source_md5sum(1) - create source md5sums -# Copyright (C) 2006-2010 Daniel Baumann -# -# live-helper comes with ABSOLUTELY NO WARRANTY; for details see COPYING. -# This is free software, and you are welcome to redistribute it -# under certain conditions; see COPYING for details. - -set -e - -# Including common functions -. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh - -# Setting static variables -DESCRIPTION="$(Echo 'create source md5sums')" -HELP="" -USAGE="${PROGRAM} [--force]" - -Arguments "${@}" - -# Reading configuration files -Read_conffiles config/all config/common config/bootstrap config/chroot config/binary config/source -Set_defaults - -if [ "${LH_SOURCE}" != "true" ] -then - exit 0 -fi - -if [ "${LH_CHECKSUMS}" != "true" ] -then - exit 0 -fi - -Echo_message "Begin creating source md5sum.txt..." - -# Requiring stage file -Require_stagefile .stage/config .stage/source_debian - -# Checking stage file -Check_stagefile .stage/source_md5sum - -# Checking lock file -Check_lockfile .lock - -# Creating lock file -Create_lockfile .lock - -# Remove old md5sums -if [ -f source/md5sum.txt ] -then - rm -f source/md5sum.txt -fi - -# Calculating md5sums -cd source -find . -type f -print0 | sort -z | xargs -0 md5sum > ../md5sum.txt - -cat > md5sum.txt << EOF -This file contains the list of md5 checksums of all files on this medium. - -You can verify them automatically with the 'integrity-check' boot parameter, -or, manually with: 'md5sum -c md5sum.txt'. - - -EOF - -cat ../md5sum.txt >> md5sum.txt -rm -f ../md5sum.txt - -# File list -find . | sed -e 's|^.||g' | grep "^/" | sort > ../source.list - -cd "${OLDPWD}" - -# Creating stage file -Create_stagefile .stage/source_md5sum -- cgit v1.2.3