From 251f3295f3b64a81c86ef1e18ce92f91f8658f5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20K=C3=B6nig?= Date: Thu, 12 Sep 2024 21:32:36 +0200 Subject: [PATCH] Return early during v6 migration if migration dir exists MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Christian König --- automated install/basic-install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/automated install/basic-install.sh b/automated install/basic-install.sh index 752e9816..a123e8d9 100755 --- a/automated install/basic-install.sh +++ b/automated install/basic-install.sh @@ -2146,8 +2146,8 @@ migrate_dnsmasq_configs() { # avoid conflicts with other services on this system # Exit early if this is already Pi-hole v6.0 - # We decide this on the presence of the file /etc/pihole/pihole.toml - if [[ -f /etc/pihole/pihole.toml ]]; then + # We decide this on the presence of the migration dir + if [[ -d "${V6_CONF_MIGRATION_DIR}" ]]; then return 0 fi