From 4e089eaa31d9eaed15719919485bea5a463bad14 Mon Sep 17 00:00:00 2001 From: Frank Brehm Date: Wed, 17 Jun 2020 12:21:08 +0200 Subject: [PATCH] Bugfixing in snippets/tpl.180.repos_centos8.sh --- snippets/tpl.180.repos_centos8.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snippets/tpl.180.repos_centos8.sh b/snippets/tpl.180.repos_centos8.sh index 68663f9..ee1e161 100644 --- a/snippets/tpl.180.repos_centos8.sh +++ b/snippets/tpl.180.repos_centos8.sh @@ -23,7 +23,7 @@ get_repos_centos8() { tmp_file=$( mktemp ) wget -O "${tmp_file}" --dns-timeout=2 --connect-timeout=3 --read-timeout=3 "${url}" || true if [[ -s "${tmp_file}" ]] ; then - mv -pv "${tmp_file}" "/etc/yum.repos.d/${repo}.repo" + mv -v "${tmp_file}" "/etc/yum.repos.d/${repo}.repo" fi rm -fv "${tmp_file}" done -- 2.39.5