From 1850f3ddf6f8f07cd29941e8b20795a5ed69b860 Mon Sep 17 00:00:00 2001 From: Iru Cai Date: Thu, 6 Dec 2018 15:49:42 +0800 Subject: distro/debian: update to 9.6.0 --- distro/debian/isoinfo.common | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) (limited to 'distro/debian/isoinfo.common') diff --git a/distro/debian/isoinfo.common b/distro/debian/isoinfo.common index 9ca156e..44da88b 100644 --- a/distro/debian/isoinfo.common +++ b/distro/debian/isoinfo.common @@ -1,6 +1,21 @@ -_isover=8.6.0 +_isover=9.6.0 +ISONAME="$DISTRONAME $_isover amd64 ${_desktop}" +ISOURL="${_isover}-live/amd64/iso-hybrid/debian-live-${_isover}-amd64-${_desktop,,}.iso" +VERIFY=sha512chk mirrorlist=( https://mirrors.tuna.tsinghua.edu.cn/debian-cd http://mirrors.ustc.edu.cn/debian-cd ) + +sha512chk() { + local _cksum _hashsum + _cksum=$(sha512sum "$ISOPATH/$ISOFILE" | cut -d' ' -f1) + _hashsum=$(grep "${ISOFILE}\$" distro/debian/SHA512SUMS | cut -d' ' -f1) + + if [[ $_cksum == $_hashsum ]]; then + msg "$ISOFILE ok." + else + msg "$ISOFILE checksum bad!" && return 1 + fi +} -- cgit v1.2.3