]> git.donarmstrong.com Git - neurodebian.git/commitdiff
Script to update all supported nd+ cows.
authorMichael Hanke <michael.hanke@gmail.com>
Fri, 4 Sep 2009 12:09:27 +0000 (08:09 -0400)
committerMichael Hanke <michael.hanke@gmail.com>
Fri, 4 Sep 2009 12:09:27 +0000 (08:09 -0400)
tools/nd_updateall [new file with mode: 0755]

diff --git a/tools/nd_updateall b/tools/nd_updateall
new file mode 100755 (executable)
index 0000000..b2e3edb
--- /dev/null
@@ -0,0 +1,10 @@
+#!/bin/bash
+
+. /home/neurodebian/neurodebian.git/tools/nd_cmdsettings.sh
+
+for d in $alldists; do
+  dfamily=${d%%-*}
+  drelease=${d##*-}
+
+  nd_updatedist $dfamily $drelease
+done