]> git.madduck.net Git - code/vinst.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

properly rewrite di-update
authormartin f. krafft <madduck@madduck.net>
Wed, 12 Nov 2014 21:15:10 +0000 (22:15 +0100)
committermartin f. krafft <madduck@madduck.net>
Thu, 13 Nov 2014 11:28:04 +0000 (12:28 +0100)
di-update

index a004ce781386d1385b20e381a0853236939f30dd..1caf91812f78517e63070b2ee13876e25b697606 100755 (executable)
--- a/di-update
+++ b/di-update
@@ -1,12 +1,32 @@
 #!/bin/sh
 set -eu
 
-MIRROR=ftp://ftp2.de.debian.org/debian
-SUITES="wheezy jessie"
-
-for s in $SUITES; do
-  mkdir -p installer-amd64/$s
-  cd installer-amd64/$s
-  wget -c -np -nH -m --cut-dirs=5 $MIRROR/dists/$s/main/installer-amd64/current/images/netboot
-  cd -
+: ${MIRROR:=ftp://ftp2.de.debian.org}
+: ${SUBDIR:=debian/dists/%SUITE%/main/installer-%ARCH%/current/images}
+
+: ${ARCHS:=amd64}
+: ${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