From 9a35ee39c690d94662bf5913ddd82b1157b217a9 Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Wed, 28 Jun 2023 07:08:34 +0200 Subject: [PATCH] rename offline mode function --- usr/lib/archboot/installer/base.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/usr/lib/archboot/installer/base.sh b/usr/lib/archboot/installer/base.sh index 403d057c4..c374ffa62 100644 --- a/usr/lib/archboot/installer/base.sh +++ b/usr/lib/archboot/installer/base.sh @@ -62,7 +62,7 @@ _abort_running_system() { _dialog --msgbox "This function is not available on System Setup Mode." 5 60 } -_abort_offline_mode() { +_abort_local_mode() { _dialog --msgbox "This function is not available on Local Mode." 5 60 } @@ -300,7 +300,7 @@ _mainmenu() { _set_vconsole ;; "1") if [[ -e "/var/cache/pacman/pkg/archboot.db" ]]; then - _abort_offline_mode + _abort_local_mode else _donetwork fi ;; @@ -308,7 +308,7 @@ _mainmenu() { if [[ "${_DESTDIR}" == "/" ]]; then _abort_running_system elif [[ -e "/var/cache/pacman/pkg/archboot.db" ]]; then - _abort_offline_mode + _abort_local_mode else _select_source || return 1 _update_environment