]> git.madduck.net Git - code/vinst.git/blobdiff - di-update

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:

add installer-i386 and enable --arch specification
[code/vinst.git] / di-update
index 22c0d56b2ceffb6244b9b8f5f2489996666d84fd..c64224da9017fedc414f7feca58110211134b0d1 100755 (executable)
--- a/di-update
+++ b/di-update
@@ -3,5 +3,11 @@ set -eu
 
 MIRROR=ftp://ftp2.de.debian.org/debian
 
-cd installer-amd64
-exec wget -c -np -nH -m --cut-dirs=5 $MIRROR/dists/wheezy/main/installer-amd64/current/images/netboot
+cd ${0%/*}
+BASEDIR=$PWD
+
+for arch in amd64 i386; do
+  mkdir --parent $BASEDIR/installer-${arch}
+  cd $BASEDIR/installer-${arch}
+  wget -c -np -nH -m --cut-dirs=5 $MIRROR/dists/wheezy/main/installer-${arch}/current/images/netboot
+done