From cc1d4c538bb24ed9c98277f20a2eb5dfefd06909 Mon Sep 17 00:00:00 2001 From: Serkan Sahin <14278530+SergeantSerk@users.noreply.github.com> Date: Sat, 20 Dec 2025 17:09:35 +0000 Subject: [PATCH] Fix dialog typo --- tools/modules/system/change_system_hostname.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/modules/system/change_system_hostname.sh b/tools/modules/system/change_system_hostname.sh index 3bf819b3..2816664d 100644 --- a/tools/modules/system/change_system_hostname.sh +++ b/tools/modules/system/change_system_hostname.sh @@ -10,7 +10,7 @@ module_options+=( # @description Change system hostname # function change_system_hostname() { - local new_hostname=$($DIALOG --title "Enter new hostnane" --inputbox "" 7 50 3>&1 1>&2 2>&3) + local new_hostname=$($DIALOG --title "Enter new hostname" --inputbox "" 7 50 3>&1 1>&2 2>&3) [ $? -eq 0 ] && [ -n "${new_hostname}" ] && hostnamectl set-hostname "${new_hostname}" }