Files
base-files/debian/check-md5sum-etc
T
Santiago Vila 4e62ac47b0 Version 13
2024-04-17 11:38:16 +02:00

9 lines
223 B
Bash

#!/bin/sh
file=$1
md5=$(md5sum share/${file} | cut -f 1 -d " ")
if ! grep -q "$md5" share/${file}.md5sums; then
echo Error: share/${file}.md5sums is incomplete.
echo Need to add "$md5" with current version.
exit 1
fi