X-Git-Url: https://git.madduck.net/code/vinst.git/blobdiff_plain/e5ea710926dc73f39dc9920237d8557c79ad0e5a..82f78b7c8d2a9efbce90ad2c9b72799a39de8672:/di-update diff --git a/di-update b/di-update index 22c0d56..127a319 100755 --- a/di-update +++ b/di-update @@ -1,7 +1,32 @@ #!/bin/sh set -eu -MIRROR=ftp://ftp2.de.debian.org/debian +: ${MIRROR:=ftp://ftp2.de.debian.org} +: ${SUBDIR:=debian/dists/%SUITE%/main/installer-%ARCH%/current/images} -cd installer-amd64 -exec wget -c -np -nH -m --cut-dirs=5 $MIRROR/dists/wheezy/main/installer-amd64/current/images/netboot +: ${ARCHS:=amd64 i386} +: ${SUITES:=wheezy jessie} + +: ${MIRROR_jessie:=http://d-i.debian.org} +: ${SUBDIR_jessie:=daily-images/%ARCH%/daily/} + +for a in $ARCHS; do + + for s in $SUITES; do + + eval m=\${MIRROR_$s:-$MIRROR} + eval p=\${SUBDIR_$s:-$SUBDIR} + p=$(echo $p | sed -e "s,%ARCH%,$a,;s,%SUITE%,$s,;s,/$,,") + + # count number of path components + n=1; t=$p; while [ "${t%/*}" != "$t" ]; do t=${t%/*}; n=$((n+1)); done + + wget -c -np -nH -m --cut-dirs=$n \ + --directory-prefix=installer-$a/$s/current/images \ + -X $p/cdrom,$p/hd-media \ + -R index.html\* \ + $m/$p/ + + done + +done