From: Michael Prokop Date: Sun, 4 Nov 2007 10:32:28 +0000 (+0100) Subject: Generate md5sum of windows binaries X-Git-Tag: 0.0.8~24 X-Git-Url: https://git.grml.org/?p=grml-live.git;a=commitdiff_plain;h=896a6c8d2654fdc1b8db0bb9abf85ae3e8babec2 Generate md5sum of windows binaries --- diff --git a/debian/changelog b/debian/changelog index f8b7fa1..ce6883e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -10,6 +10,7 @@ grml-live (0.0.8) unstable; urgency=low * Set EXITSTATUS in /etc/policy-rc.d.conf of chroot to 101 for softupdate action. * Remove /var/log/fai/* in class RELEASE. + * Generate md5sum of windows binaries. -- Michael Prokop Sun, 04 Nov 2007 01:43:06 +0100 diff --git a/grml-live b/grml-live index 2ebfa88..dbc43fc 100755 --- a/grml-live +++ b/grml-live @@ -447,6 +447,7 @@ if [ "$ARCH" = i386 ] || [ "$ARCH" = amd64 ] ; then ( cd "$BUILD_OUTPUT"/windows for file in pageant plink pscp psftp putty puttygen ; do wget -O ${file}.exe ${WINDOWS_BINARIES}/${file}.exe + md5sum ${WINDOWS_BINARIES}/${file}.exe > ${WINDOWS_BINARIES}/${file}.exe.md5 done ) fi fi