From 01e0289483fb130c587e9b4f8818212d74cb8fba Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Wed, 2 Aug 2023 08:39:24 +0200 Subject: [PATCH] remove LOGGING message --- usr/bin/archboot-pacsetup.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr/bin/archboot-pacsetup.sh b/usr/bin/archboot-pacsetup.sh index 93fab93ef..5968b75c7 100755 --- a/usr/bin/archboot-pacsetup.sh +++ b/usr/bin/archboot-pacsetup.sh @@ -18,7 +18,7 @@ _select_mirror() { if [[ "${_RUNNING_ARCH}" == "x86_64" ]]; then _COUNTRY="$(curl -s "http://ip-api.com/csv/?fields=countryCode")" _DOWNLOAD="Downloading latest mirrorlist for Region ${_COUNTRY}..." - _download_mirror | _dialog --title "Logging to ${_LOG}" --no-mouse --gauge "${_DOWNLOAD}" 6 70 0 + _download_mirror | _dialog --no-mouse --gauge "${_DOWNLOAD}" 6 70 0 if grep -q '#Server = https:' /tmp/pacman_mirrorlist.txt; then mv "${_MIRRORLIST}" "${_MIRRORLIST}.bak" cp /tmp/pacman_mirrorlist.txt "${_MIRRORLIST}" @@ -170,7 +170,7 @@ if [[ ! -e "/var/cache/pacman/pkg/archboot.db" ]] &&\ update | grep -q '\-latest' &&\ [[ "$(grep -w MemTotal /proc/meminfo | cut -d ':' -f2 | sed -e 's# ##g' -e 's#kB$##g')" -gt "2571000" ]] &&\ ! [[ "${_RUNNING_ARCH}" == "riscv64" ]]; then - _update_environment | _dialog --title "Logging to ${_LOG}" --no-mouse --gauge "Refreshing package database..." 6 70 0 + _update_environment | _dialog --no-mouse --gauge "Refreshing package database..." 6 70 0 _cleanup fi _dialog --no-mouse --infobox "Pacman configuration completed successfully." 3 60