From 521ce03a1456d44808303e0986a9ac111986b9ff Mon Sep 17 00:00:00 2001 From: "B. Stack" Date: Thu, 14 Dec 2023 10:03:15 -0500 Subject: fix wget, use $YUMMIRRORSCRIPT --- coprmirror.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'coprmirror.sh') diff --git a/coprmirror.sh b/coprmirror.sh index c73abf1..465fa58 100755 --- a/coprmirror.sh +++ b/coprmirror.sh @@ -8,6 +8,7 @@ # Project: coprmirror # Purpose: Mirror all available architectures of a COPR to local disk # History: +# 2022-02-14 fix wget of pubkey to --output-document # Usage: # In a cronjob: # COPRMIRROR_CONF=coprmirror.conf ./coprmirror.sh 1>/dev/null 2>&1 @@ -35,7 +36,7 @@ echo "${listing}" test -z "${DRYRUN}" && { mkdir -p "${workdir}" # the -N prevents pubkey.gpg.1 - wget -N --output-file="${workdir}/pubkey.gpg" "${copr_url}/${copr}/pubkey.gpg" + wget -N --output-document="${workdir}/pubkey.gpg" "${copr_url}/${copr}/pubkey.gpg" } for word in ${listing} ; @@ -58,5 +59,5 @@ do include_sources="${include_sources}" \ resign_repo="${resign_repo}" \ gpgkey= \ - ./yummirror.sh + "${YUMMIRROR_SCRIPT}" done -- cgit