summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
Diffstat (limited to 'gnu')
-rw-r--r--gnu/services/networking.scm7
1 files changed, 5 insertions, 2 deletions
diff --git a/gnu/services/networking.scm b/gnu/services/networking.scm
index 4bda1029867..52e37d20ab9 100644
--- a/gnu/services/networking.scm
+++ b/gnu/services/networking.scm
@@ -455,14 +455,17 @@ record instead of a package. Please adjust your configuration accordingly."))
455 (dhcp-client-configuration 455 (dhcp-client-configuration
456 (package package)))))) 456 (package package))))))
457 457
458(define dhcp-client-service-type 458(define-deprecated dhcp-client-service-type
459 dhcpcd-service-type
459 (service-type (name 'dhcp-client) 460 (service-type (name 'dhcp-client)
460 (extensions 461 (extensions
461 (list (service-extension shepherd-root-service-type 462 (list (service-extension shepherd-root-service-type
462 dhcp-client-shepherd-service))) 463 dhcp-client-shepherd-service)))
463 (default-value (dhcp-client-configuration)) 464 (default-value (dhcp-client-configuration))
464 (description "Run @command{dhcp}, a Dynamic Host Configuration 465 (description "Run @command{dhcp}, a Dynamic Host Configuration
465Protocol (DHCP) client, on all the non-loopback network interfaces."))) 466Protocol (DHCP) client, on all the non-loopback network interfaces.
467
468This services is deprecated as ISC's DHCP client reached its end-of-life.")))
466 469
467(define-record-type* <dhcpd-configuration> 470(define-record-type* <dhcpd-configuration>
468 dhcpd-configuration make-dhcpd-configuration 471 dhcpd-configuration make-dhcpd-configuration