From f66d915f5df06dc82976b971b14a9728bf1a6435 Mon Sep 17 00:00:00 2001 From: William Wernert Date: Mon, 8 Nov 2021 10:38:30 -0500 Subject: [PATCH] Normal hostname check already checks for localhost --- setup/so-functions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/so-functions b/setup/so-functions index 2a8a6ff88..a9925c80d 100755 --- a/setup/so-functions +++ b/setup/so-functions @@ -475,7 +475,7 @@ collect_mngr_hostname() { whiptail_management_server "$MSRV" done - while [[ $MSRV == "$HOSTNAME" || $MSRV == "localhost" ]]; do + while [[ $MSRV == "$HOSTNAME" ]]; do whiptail_invalid_hostname 0 whiptail_management_server "$MSRV" done