From: Frank Brehm Date: Wed, 17 Jun 2020 10:21:08 +0000 (+0200) Subject: Bugfixing in snippets/tpl.180.repos_centos8.sh X-Git-Tag: 2.1.2^2~9^2~31^2~31 X-Git-Url: https://git.uhu-banane.net/?a=commitdiff_plain;h=4e089eaa31d9eaed15719919485bea5a463bad14;p=pixelpark%2Fcreate-vmware-tpl.git Bugfixing in snippets/tpl.180.repos_centos8.sh --- 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