removed mods directory from the ATutor codebase
[atutor.git] / mods / wiki / plugins / interwiki / metadb-wget.sh
diff --git a/mods/wiki/plugins/interwiki/metadb-wget.sh b/mods/wiki/plugins/interwiki/metadb-wget.sh
deleted file mode 100755 (executable)
index 36b6d08..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/sh
-# This script fetches the MetaWiki database file from our downloads/ dir
-URL_DOWN="http://erfurtwiki.sourceforge.net/downloads/contrib-add-ons/metadb"
-URL_MIRR="http://ewiki.berlios.de/metadb"
-URL_ORIG="http://sunir.org/meatball/MetaWiki/metadb"
-
-#-- switch to ewiki base, make EWIKI_VAR directory
-cd `dirname $0`
-cd ../..
-[ ! -e var ]   &&   mkdir var   &&   chmod 763 var
-
-#-- download
-wget -N        $URL_MIRR -O var/metadb ||      \
-wget -N        $URL_DOWN -O var/metadb ||      \
-wget -N        $URL_ORIG -O var/metadb ||      \
-echo "ERROR fetching latest 'metadb' file"
-
-#-- compress
-gzip -7 var/metadb
-