From 733dce1c4c4626cfa99ca0ac62a4114396969b83 Mon Sep 17 00:00:00 2001 From: RD WebDesign Date: Thu, 9 Jan 2025 17:34:05 -0300 Subject: [PATCH] If it's a docker container, consider the OS is supported Signed-off-by: RD WebDesign --- advanced/Scripts/piholeDebug.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/advanced/Scripts/piholeDebug.sh b/advanced/Scripts/piholeDebug.sh index 63d8c50b..1307382c 100755 --- a/advanced/Scripts/piholeDebug.sh +++ b/advanced/Scripts/piholeDebug.sh @@ -346,6 +346,9 @@ os_check() { fi done + # If it is a docker container, we can assume the OS is supported + [ -n "${DOCKER_VERSION}" ] && valid_os=true && valid_version=true + local finalmsg if [ "$valid_os" = true ]; then log_write "${TICK} Distro: ${COL_GREEN}${detected_os^}${COL_NC}"