From 9fed049222425b9942933e19f8b78ee306cffb74 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20unbrot=20P=C3=A4tzold?= Date: Tue, 5 May 2026 21:33:25 +0200 Subject: [PATCH] configure: comment if existing config was found --- system_setup/configure.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/system_setup/configure.sh b/system_setup/configure.sh index 70c20ee..d2d6ce1 100755 --- a/system_setup/configure.sh +++ b/system_setup/configure.sh @@ -9,6 +9,7 @@ CONF_FILE="${SCRIPTDIR}/../config.d/configure.conf" CONF_EXISTING="${SCRIPTDIR}/../config/setup_system.conf" if [[ -f "$CONF_EXISTING" ]]; then + echo "Found existing config in $CONF_EXISTING . Will try to use it." CONF_DIST="$CONF_EXISTING" else CONF_DIST="${SCRIPTDIR}/config.dist/setup_system.conf.dist"