Unverified Commit 7a5a2fa8 authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

Merge pull request #225785 from helsinki-systems/warn-dhcpd-eol

nixos/dhcpd: warn of pending removal
parents 175667e8 e3702c07
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -218,6 +218,13 @@ in

    systemd.services = dhcpdService "4" cfg4 // dhcpdService "6" cfg6;

    warnings = [
      ''
        The dhcpd4 and dhcpd6 modules will be removed from NixOS 23.11, because ISC DHCP reached its end of life.
        See https://www.isc.org/blogs/isc-dhcp-eol/ for details.
        Please switch to a different implementation like kea, systemd-networkd or dnsmasq.
      ''
    ];
  };

}