From 34afc1407ab1c0fed6e91b0e3047861be8bd264a Mon Sep 17 00:00:00 2001 From: phil Date: Fri, 9 Jun 2006 12:51:09 +0000 Subject: [PATCH] - Parameter zu wget hinzugefuegt, um Download von systemausfall.org zu ermoeglichen --- downloads/get_files.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/downloads/get_files.sh b/downloads/get_files.sh index 0e8edd0..1f31433 100755 --- a/downloads/get_files.sh +++ b/downloads/get_files.sh @@ -12,7 +12,7 @@ KEY_SERVERS="x-hkp://pgp.mit.edu --keyserver hkp://subkeys.pgp.net" function download_file() { local QUELLE=$(grep "^$1[[:space:]]" $URL_FILE | cut -f 2) - wget --continue --output-document "$DEST_DIR/$1" "$QUELLE" + wget --continue --output-document --no-check-certificate "$DEST_DIR/$1" "$QUELLE" } function verify_file()