From 8f5b38634976b2ee5a6b84005a62875647ef2c99 Mon Sep 17 00:00:00 2001 From: CrazyWolf13 Date: Mon, 8 Dec 2025 15:39:21 +0100 Subject: [PATCH] fix tls --- tools/addon/pihole-exporter.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/addon/pihole-exporter.sh b/tools/addon/pihole-exporter.sh index 898546d87..6010b177c 100644 --- a/tools/addon/pihole-exporter.sh +++ b/tools/addon/pihole-exporter.sh @@ -80,7 +80,7 @@ echo echo -n "Do you want to skip TLS-Verification (if using a self-signed Certificate on Pi-Hole) [y/N]: " read -er SKIP_TLS -if ! [[ "${SKIP_TLS,,}" =~ ^(y|yes)$ ]]; then +if [[ "${SKIP_TLS,,}" =~ ^(y|yes)$ ]]; then pihole_SKIP_TLS="true" fi