mirror of
https://codeberg.org/guix/guix.git
synced 2026-01-25 12:05:19 -06:00
machine: hetzner: Use dhcpcd service instead of dhcp-client.
This fixes DHCP-provided routes on servers that have both public and private interfaces. * gnu/machine/hetzner.scm (%hetzner-os-arm)[services]: Replace dhcp-client-service-type with dhcpcd-service-type. Fixes: https://codeberg.org/guix/guix/issues/407 Change-Id: I8e0b4fb12727e784f2b622273ffef504e58eddfe Signed-off-by: Hilton Chain <hako@ultrarare.space>
This commit is contained in:
parent
a9f0a0635d
commit
6ae4a7319f
1 changed files with 3 additions and 2 deletions
|
|
@ -1,5 +1,6 @@
|
|||
;;; GNU Guix --- Functional package management for GNU
|
||||
;;; Copyright © 2024 Roman Scherer <roman@burningswell.com>
|
||||
;;; Copyright © 2025 Owen T. Heisler <writer@owenh.net>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
|
@ -117,7 +118,7 @@
|
|||
(initrd-modules
|
||||
(cons* "sd_mod" "virtio_scsi" %base-initrd-modules))
|
||||
(services
|
||||
(cons* (service dhcp-client-service-type)
|
||||
(cons* (service dhcpcd-service-type)
|
||||
(service openssh-service-type
|
||||
(openssh-configuration
|
||||
(openssh openssh-sans-x)
|
||||
|
|
@ -393,7 +394,7 @@ Available locations:~%~%~a~%~%For more details, see: ~a")
|
|||
(type ,root-fs-type))
|
||||
%base-file-systems))))
|
||||
(services
|
||||
(cons* (service dhcp-client-service-type)
|
||||
(cons* (service dhcpcd-service-type)
|
||||
(service openssh-service-type
|
||||
(openssh-configuration
|
||||
(openssh openssh-sans-x)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue