summaryrefslogtreecommitdiff
path: root/distro/debian/isoinfo.common
diff options
context:
space:
mode:
Diffstat (limited to 'distro/debian/isoinfo.common')
-rw-r--r--distro/debian/isoinfo.common17
1 files changed, 16 insertions, 1 deletions
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
+}