Commit c7bcfb528480

Vincent Demeester <vincent@sbr.pm>
2025-12-17 11:23:37
fix(aix): Fix dnsmasq startup failure on boot
- Resolve race condition where dnsmasq failed before end0 got IP address - Use bind-dynamic to allow dnsmasq to wait for interface readiness Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent 9f02fe8
Changed files (1)
systems
systems/aix/extra.nix
@@ -52,7 +52,7 @@ in
       settings = {
         # Listen on local network interface
         interface = "end0";
-        bind-interfaces = true;
+        bind-dynamic = true;
 
         # DNS settings
         domain-needed = true;