diff --git a/nix-system-configs/modules/system/traefik.nix b/nix-system-configs/modules/system/traefik.nix index 7654cb2..ed097f9 100644 --- a/nix-system-configs/modules/system/traefik.nix +++ b/nix-system-configs/modules/system/traefik.nix @@ -675,7 +675,7 @@ in { auth_header="Authorization: Bearer" fi # Output for debugging - ${pkgs.util-linux}/bin.logger -s "DDNS Updater: Using auth_method ''${auth_method} with header ''${auth_header}" + ${pkgs.util-linux}/bin/logger -s "DDNS Updater: Using auth_method ''${auth_method} with header ''${auth_header}" ########################################### @@ -690,7 +690,7 @@ in { # Output for debugging CURL_EXIT=$? - ${pkgs.util-linux}/bin.logger -s "DDNS Updater: Cloudflare GET exit=$CURL_EXIT response=$record" + ${pkgs.util-linux}/bin/logger -s "DDNS Updater: Cloudflare GET exit=$CURL_EXIT response=$record" ########################################### ## Check if the domain has an A record @@ -700,7 +700,7 @@ in { exit 1 fi # Output for debugging - ${pkgs.util-linux}/bin.logger -s "DDNS Updater: Record found for ''${record_name}, checking IP..." + ${pkgs.util-linux}/bin/logger -s "DDNS Updater: Record found for ''${record_name}, checking IP..." ########################################### @@ -713,7 +713,7 @@ in { exit 0 fi # Output for debugging - ${pkgs.util-linux}/bin.logger -s "DDNS Updater: Current IP ($CURRENT_IP) is different from old IP ($old_ip) for ''${record_name}, updating record..." + ${pkgs.util-linux}/bin/logger -s "DDNS Updater: Current IP ($CURRENT_IP) is different from old IP ($old_ip) for ''${record_name}, updating record..." ########################################### @@ -721,7 +721,7 @@ in { ########################################### record_identifier=$(echo "$record" | sed -E 's/.*"id":"([A-Za-z0-9_]+)".*/\\1/') # Output for debugging - ${pkgs.util-linux}/bin.logger -s "DDNS Updater: Record identifier for ''${record_name} is ''${record_identifier}" + ${pkgs.util-linux}/bin/logger -s "DDNS Updater: Record identifier for ''${record_name} is ''${record_identifier}" ###########################################