Skip to content

Commit

Permalink
By default including sha256sum only in progress-linux, keep md5sum le…
Browse files Browse the repository at this point in the history
…gacy for debian.
  • Loading branch information
daniel-baumann committed May 6, 2013
1 parent 732fb38 commit d3a7964
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions backends/initramfs-tools/live.hook
Expand Up @@ -150,8 +150,12 @@ copy_exec /bin/mount /bin/mount.util-linux
[ "${QUIET}" ] || echo -n " utils"

# Feature: Verify Checksums
copy_exec /usr/bin/sha256sum /bin
copy_exec /usr/bin/md5sum /bin
if [ -e /etc/progress-linux_version ]
then
copy_exec /usr/bin/sha256sum /bin
else
copy_exec /usr/bin/md5sum /bin
fi

# Program: memdisk
if [ -x /usr/bin/memdiskfind ]
Expand Down

0 comments on commit d3a7964

Please sign in to comment.