mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
nixos/dhcpd: warn of pending removal
This commit is contained in:
parent
6e4745abc1
commit
e3702c0788
1 changed files with 7 additions and 0 deletions
|
@ -218,6 +218,13 @@ in
|
||||||
|
|
||||||
systemd.services = dhcpdService "4" cfg4 // dhcpdService "6" cfg6;
|
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.
|
||||||
|
''
|
||||||
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue