1
0
mirror of https://github.com/pi-hole/pi-hole synced 2024-12-22 14:58:08 +00:00

Return early during v6 migration if migration dir exists (#5766)

This commit is contained in:
yubiuser 2024-09-12 21:44:46 +02:00 committed by GitHub
commit 3daaabfebd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2146,8 +2146,8 @@ migrate_dnsmasq_configs() {
# avoid conflicts with other services on this system # avoid conflicts with other services on this system
# Exit early if this is already Pi-hole v6.0 # Exit early if this is already Pi-hole v6.0
# We decide this on the presence of the file /etc/pihole/pihole.toml # We decide this on the presence of the migration dir
if [[ -f /etc/pihole/pihole.toml ]]; then if [[ -d "${V6_CONF_MIGRATION_DIR}" ]]; then
return 0 return 0
fi fi