From 37e64c7688b8ff6341bf961a3eaef2fba07182c5 Mon Sep 17 00:00:00 2001 From: Wojciech Janota Date: Thu, 1 Sep 2022 12:42:52 +0200 Subject: [PATCH] Fixes --- setup-system.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup-system.sh b/setup-system.sh index 987132e..86ee982 100755 --- a/setup-system.sh +++ b/setup-system.sh @@ -89,13 +89,13 @@ echo -e "Hostname generation" read -p "$(echo -e "${BIGreen}Device type[T420/HUAWEI/PC (def: archbox)]: ${Color_Off}")" device_selection hostname_name="archbox" if [[ $device_selection = "PC" ]]; then - $hostname_name="metatron" + hostname_name="metatron" echo $hostname_name elif [[ $device_selection = "HUAWEI" ]]; then - $hostname_name="gabriel" + hostname_name="gabriel" echo $hostname_name elif [[ $device_selection = "T420" ]]; then - $hostname_name="ramiel" + hostname_name="ramiel" echo $hostname_name else echo $hostname_name