From e5b99e36d96614d059137f3df323bcc39ead369e Mon Sep 17 00:00:00 2001 From: Timo Weingärtner Date: Sat, 25 Feb 2012 21:17:04 +0100 Subject: Imported Debian version 0.4 --- plugins/curl | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'plugins/curl') diff --git a/plugins/curl b/plugins/curl index 5964613..6f803b3 100755 --- a/plugins/curl +++ b/plugins/curl @@ -4,6 +4,7 @@ # # ENVIRONMENT VARIABLES: # URL URL to download known_hosts file from +# CURL_OPTIONS options passed to curl # SIGURL URL of the GnuPG signature # KEYRING path to the keyring for use by gpgv # @@ -11,12 +12,12 @@ set -e if [ "${SIGURL}" ]; then - curl -Rz "./current" -m 300 -o new.sig "${SIGURL}" -o new "${URL}" + curl -Rz "./current" -m 300 ${CURL_OPTIONS} -o new.sig "${SIGURL}" -o new "${URL}" [ -e new ] || exit 0 gpgv --keyring "${KEYRING}" --status-fd 2 new.sig || exit 1 # return 1 because it's not clear what other codes may used else - curl -Rz "./current" -m 300 -o new "${URL}" + curl -Rz "./current" -m 300 ${CURL_OPTIONS} -o new "${URL}" fi # vim:set ft=sh: -- cgit v1.2.3