forked from ungleich-public/cdist
__file: support md5 of macosx
Signed-off-by: Nico Schottelius <nico@kr.ethz.ch>
This commit is contained in:
parent
4e4e53aebd
commit
5b2c52b977
1 changed files with 13 additions and 1 deletions
|
@ -27,9 +27,21 @@ else
|
||||||
destination="/$__object_id"
|
destination="/$__object_id"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
os="$(cat $__global/explorer/os)"
|
||||||
|
|
||||||
|
case "$os" in
|
||||||
|
macosx)
|
||||||
|
md5sum="md5"
|
||||||
|
;;
|
||||||
|
|
||||||
|
*)
|
||||||
|
md5sum="md5sum"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
# No output if file does not exist - does definitely not match the md5sum :-)
|
# No output if file does not exist - does definitely not match the md5sum :-)
|
||||||
if [ -e "$destination" ]; then
|
if [ -e "$destination" ]; then
|
||||||
md5sum < "$destination"
|
$md5sum < "$destination"
|
||||||
else
|
else
|
||||||
echo "NO FILE FOUND, NO CHECKSUM CALCULATED."
|
echo "NO FILE FOUND, NO CHECKSUM CALCULATED."
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue