From 9ae5c8bbd0fb11233627df051c684288783756ad Mon Sep 17 00:00:00 2001 From: Dominik Roth Date: Sun, 24 Aug 2025 20:30:23 +0200 Subject: [PATCH] Add cluster logo ASCII art to installer Beautiful mesh network visualization for nullpoint cluster installer --- cluster-setup.sh | 35 ++++++++++++++++++++++++++++++++--- 1 file changed, 32 insertions(+), 3 deletions(-) diff --git a/cluster-setup.sh b/cluster-setup.sh index 25514e0..07db53d 100755 --- a/cluster-setup.sh +++ b/cluster-setup.sh @@ -16,9 +16,38 @@ GLUSTER_MOUNT_PATH="/data/storage" GLUSTER_VOLUME="cluster-volume" NEBULA_VERSION="v1.8.2" -echo -e "${GREEN}================================${NC}" -echo -e "${GREEN} Nullpoint Cluster Setup${NC}" -echo -e "${GREEN}================================${NC}\n" +CLUSTER_LOGO=$(cat << "EOF" + == + .@@@@@ + =@@@@@% + +@@@@@ + :@@@@@ + *@@@@: -*#+: + *@@@- %@@@@ .%@@@@@@@@@@@@* + @@@@@ %@@@@ *@@@@@@@@@@@@@@@@ + +@@@@* #@@@@. %@@@@@@@. + @@@@@@ -@@@@%:@@@@@@: + *@@@@@@. #@@@@@@@@@: + .@@@@@@@@%=.#@@@@@@@@@@@@@#. + *@@@@@@@@@@@@@@@@@@@@@@@@@@+ + =@@@@@@@@@@@@@@%=#@@@@@@@@% + :@@@@@@@@@+ -@@@@@@+ + *@@@@@-%@@@@: .@@@@@# + =@@@@@@@ .@@@@# #@@@@+ + %@@@@@@@@@@@@@@@@. @@@@@ @@@@@ + #@@@@@@@@@@@@@= @@@@@ =@@@% + :#@@@@- .@@@@# + #@@@@- + #@@@@% + +@@@@@* + @@@@@- + .#%. + + [nullpoint cluster] +EOF +) + +echo -e "${GREEN}${CLUSTER_LOGO}${NC}\n" # Check if running as root if [ "$EUID" -ne 0 ]; then