diff options
author | pjotrp | 2025-09-02 08:47:55 +0200 |
---|---|---|
committer | pjotrp | 2025-09-02 09:00:44 +0200 |
commit | 76cd2f196fae29090ed5a0b848a293ad0e5ee12f (patch) | |
tree | 1b33820bec8f5c5086ff7a57c3973564432034c2 | |
parent | 80a0ef45bc8c048b4baa6055136307bd1816a190 (diff) | |
download | guix-bioinformatics-76cd2f196fae29090ed5a0b848a293ad0e5ee12f.tar.gz |
Fix dhcp-client-service-type warnings
-rw-r--r-- | gn/deploy/machines/myserver.scm | 2 | ||||
-rw-r--r-- | gn/deploy/octopus.scm | 2 | ||||
-rw-r--r-- | gn/services/bnw-container.scm | 2 | ||||
-rw-r--r-- | gn/services/discourse.scm | 2 | ||||
-rw-r--r-- | gn/services/gitea-container.scm | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/gn/deploy/machines/myserver.scm b/gn/deploy/machines/myserver.scm index 11ffcd1..9a8bedf 100644 --- a/gn/deploy/machines/myserver.scm +++ b/gn/deploy/machines/myserver.scm @@ -51,7 +51,7 @@ ;; Add services to the baseline: a DHCP client and ;; an SSH server with nginx - (services (append (list (service dhcp-client-service-type) + (services (append (list (service dhcp-service-type) (service openssh-service-type (openssh-configuration ; (authorized-keys diff --git a/gn/deploy/octopus.scm b/gn/deploy/octopus.scm index 32a0495..fc631b8 100644 --- a/gn/deploy/octopus.scm +++ b/gn/deploy/octopus.scm @@ -154,7 +154,7 @@ (run-mfsmetalogger-service? #t) )) - (service dhcp-client-service-type) + (service dhcp-service-type) (service openntpd-service-type)) %base-services)) diff --git a/gn/services/bnw-container.scm b/gn/services/bnw-container.scm index 4309f75..723e063 100644 --- a/gn/services/bnw-container.scm +++ b/gn/services/bnw-container.scm @@ -84,7 +84,7 @@ ;; We don't need any packages inside the container. (packages (list coreutils)) - (services (list (service dhcp-client-service-type) + (services (list (service dhcp-service-type) (service bnw-service-type ;; The following is for testing: ;(bnw-configuration diff --git a/gn/services/discourse.scm b/gn/services/discourse.scm index befb767..feebb98 100644 --- a/gn/services/discourse.scm +++ b/gn/services/discourse.scm @@ -121,7 +121,7 @@ (list node) %base-packages)) - (services (list (service dhcp-client-service-type) + (services (list (service dhcp-service-type) (service discourse-service-type ;; The following is for testing: ;(discourse-configuration diff --git a/gn/services/gitea-container.scm b/gn/services/gitea-container.scm index 5e707ec..397e6fb 100644 --- a/gn/services/gitea-container.scm +++ b/gn/services/gitea-container.scm @@ -90,5 +90,5 @@ (id 998)) %base-groups)) - (services (list (service dhcp-client-service-type) + (services (list (service dhcp-service-type) (service gitea-service-type)))) |