From a8e5732e9ede7b8ca7fd4fc6a9a17f87ccd0a17f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Numbus?= Date: Mon, 16 Feb 2026 15:39:07 +0100 Subject: [PATCH] Fix minor pi-hole appearing twice --- deploy.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/deploy.sh b/deploy.sh index 985408a..186f214 100644 --- a/deploy.sh +++ b/deploy.sh @@ -249,7 +249,7 @@ services_selection() { echo -e "\n\n ➡️ You will now select the services you want installed on your server:" local AVAILABLE_SERVICES=( "frigate" "gitea" "home-assistant" "immich" "it-tools" \ - "nextcloud" "passbolt" "pi-hole" "virtualization" ) + "nextcloud" "passbolt" "virtualization" ) local SERVICES_DESCRIPTION=( "Pi-Hole [Always included] : Block ads on all your devices" \ "Immich : Pictures and videos backup with local machine-learning" \ @@ -445,7 +445,7 @@ services_generation() { cp -${FILES_COPY_FLAGS} templates/nix-config/podman/traefik.nix final-nix-config/etc/nixos/podman/traefik.nix cp -${FILES_COPY_FLAGS} templates/nix-config/podman/pi-hole.nix final-nix-config/etc/nixos/podman/pi-hole.nix envsubst < templates/podman-config/traefik/traefik.yaml > final-nix-config/mnt/config/traefik/traefik.yaml - generate_network "pi-hole" "0" + generate_network "pi-hole" export FTLCONF_WEBSERVER_PASSWORD="$(xkcdpass -d "-")" for service in "${SELECTED_SERVICES[@]}"; do @@ -522,7 +522,7 @@ services_generation() { # Other podman containers with no special configuration else - generate_network "${service}" "0" + generate_network "${service}" fi done