From 89fe602ac72c1d8d7cb22f7565d875716de89552 Mon Sep 17 00:00:00 2001 From: CrazyWolf13 Date: Mon, 8 Dec 2025 14:49:09 +0100 Subject: [PATCH] fix --- tools/addon/pihole-exporter.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/addon/pihole-exporter.sh b/tools/addon/pihole-exporter.sh index 6f0130df4..b3fd98aa5 100644 --- a/tools/addon/pihole-exporter.sh +++ b/tools/addon/pihole-exporter.sh @@ -69,16 +69,16 @@ if [[ -f "$INSTALL_PATH" ]]; then fi echo -e "${YW}⚠️ pihole-exporter is not installed.${CL}" -echo -n "Enter URL of pihole, example: (http://127.0.0.1): " -read -rs pihole_HOSTNAME +echo -n "Enter the hostname of pihole, example: (127.0.0.1): " +read -er pihole_HOSTNAME echo . echo -n "Enter pihole password: " -read -er pihole_PASSWORD +read -rs pihole_PASSWORD echo . echo -n "Do you want to skip TLS-Verification (if using a self-signed Certificate on Pi-Hole) [y/N]: " -read -rs pihole_SKIP_TLS +read -er pihole_SKIP_TLS echo . if ! [[ "${pihole_SKIP_TLS,,}" =~ ^(y|yes)$ ]]; then pihole_SKIP_TLS="true"