aboutsummaryrefslogtreecommitdiff
path: root/coprmirror.sh
diff options
context:
space:
mode:
Diffstat (limited to 'coprmirror.sh')
-rwxr-xr-xcoprmirror.sh5
1 files changed, 3 insertions, 2 deletions
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
bgstack15