all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#68258] [PATCH 1/7] services: openssh: Add dependency on ‘networking’.
  2024-01-05 10:59 [bug#68258] [PATCH 0/7] Upgrading Shepherd and moving the Hurd to 0.10.x Ludovic Courtès
@ 2024-01-05 10:56 ` Ludovic Courtès
  2024-01-05 18:00   ` Janneke Nieuwenhuizen
  2024-01-05 10:59 ` [bug#68258] [PATCH 2/7] tests: childhurd: Increase SSH connection timeout Ludovic Courtès
                   ` (6 subsequent siblings)
  7 siblings, 1 reply; 16+ messages in thread
From: Ludovic Courtès @ 2024-01-05 10:56 UTC (permalink / raw)
  To: 68258; +Cc: Ludovic Courtès

* gnu/services/ssh.scm (openssh-shepherd-service): Add ‘networking’ to
‘requirement’.

Change-Id: I14c48fe40cce86810a544de6bb7f925bc360653a
---
 gnu/services/ssh.scm | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/gnu/services/ssh.scm b/gnu/services/ssh.scm
index 0abecd6b42..f759c5cf6e 100644
--- a/gnu/services/ssh.scm
+++ b/gnu/services/ssh.scm
@@ -1,5 +1,5 @@
 ;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2014-2019, 2022, 2023 Ludovic Courtès <ludo@gnu.org>
+;;; Copyright © 2014-2019, 2022-2024 Ludovic Courtès <ludo@gnu.org>
 ;;; Copyright © 2016 David Craven <david@craven.ch>
 ;;; Copyright © 2016 Julien Lepiller <julien@lepiller.eu>
 ;;; Copyright © 2017 Clément Lassieur <clement@lassieur.org>
@@ -592,7 +592,10 @@ (define (openssh-shepherd-service config)
 
   (list (shepherd-service
          (documentation "OpenSSH server.")
-         (requirement '(pam syslogd loopback))
+
+         ;; On the Hurd, this can only be started after pfinet is up, hence
+         ;; the dependency on 'networking'.
+         (requirement '(pam syslogd loopback networking))
          (provision '(ssh-daemon ssh sshd))
 
          (start #~(if #$inetd-style?
-- 
2.41.0





^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [bug#68258] [PATCH 0/7] Upgrading Shepherd and moving the Hurd to 0.10.x
  2024-01-05 10:56 ` [bug#68258] [PATCH 1/7] services: openssh: Add dependency on ‘networking’ Ludovic Courtès
@ 2024-01-05 10:59 Ludovic Courtès
  2024-01-05 10:56 ` [bug#68258] [PATCH 1/7] services: openssh: Add dependency on ‘networking’ Ludovic Courtès
                   ` (7 more replies)
  0 siblings, 8 replies; 16+ messages in thread
From: Ludovic Courtès @ 2024-01-05 10:59 UTC (permalink / raw)
  To: 68258; +Cc: Ludovic Courtès, Janneke Nieuwenhuizen

Hello Guix!

With the upcoming Shepherd 0.10.3, which I plan to publish in the
coming days, I’d like to make these changes: switching the Hurd to
0.10.x (instead of 0.8.x!) since it’s now functional, which in turn
allows us to use the 0.10.x interfaces (GOOPS-less; this is a step
before the Shepherd 1.0, which will not support the GOOPS interface
at all¹).

Thoughts?

Ludo’.

¹ https://lists.gnu.org/archive/html/guix-devel/2023-04/msg00059.html

Ludovic Courtès (7):
  services: openssh: Add dependency on ‘networking’.
  tests: childhurd: Increase SSH connection timeout.
  DRAFT gnu: shepherd: Update to 0.10.3.
  system: hurd: Use the Shepherd 0.10.x.
  services: shepherd: Use the 0.10.x GOOPS-less interface.
  home: services: shepherd: Use the 0.10.x interface.
  services: bitlbee: Use ‘make-inetd-constructor’ unconditionally.

 gnu/home/services/shepherd.scm | 12 +++-----
 gnu/packages/admin.scm         |  6 ++--
 gnu/services/messaging.scm     | 51 ++++++++++++----------------------
 gnu/services/shepherd.scm      | 30 +++++++-------------
 gnu/services/ssh.scm           |  7 +++--
 gnu/system.scm                 |  4 +--
 gnu/system/hurd.scm            |  4 +--
 gnu/tests/virtualization.scm   |  3 +-
 8 files changed, 45 insertions(+), 72 deletions(-)


base-commit: 30bd86e0853ebef9f7e32315d00f67caa1880ef3
-- 
2.41.0





^ permalink raw reply	[flat|nested] 16+ messages in thread

* [bug#68258] [PATCH 2/7] tests: childhurd: Increase SSH connection timeout.
  2024-01-05 10:59 [bug#68258] [PATCH 0/7] Upgrading Shepherd and moving the Hurd to 0.10.x Ludovic Courtès
  2024-01-05 10:56 ` [bug#68258] [PATCH 1/7] services: openssh: Add dependency on ‘networking’ Ludovic Courtès
@ 2024-01-05 10:59 ` Ludovic Courtès
  2024-01-05 10:59 ` [bug#68258] [PATCH 3/7] DRAFT gnu: shepherd: Update to 0.10.3 Ludovic Courtès
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 16+ messages in thread
From: Ludovic Courtès @ 2024-01-05 10:59 UTC (permalink / raw)
  To: 68258; +Cc: Ludovic Courtès

* gnu/tests/virtualization.scm (run-childhurd-test)[run-command-over-ssh]:
Pass #:timeout.

Change-Id: I44bb3673457275fe3a8ec0af2e364292727f53a8
---
 gnu/tests/virtualization.scm | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/gnu/tests/virtualization.scm b/gnu/tests/virtualization.scm
index f3655f1d8a..6ca88cbacd 100644
--- a/gnu/tests/virtualization.scm
+++ b/gnu/tests/virtualization.scm
@@ -1,6 +1,6 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2017 Christopher Baines <mail@cbaines.net>
-;;; Copyright © 2020-2023 Ludovic Courtès <ludo@gnu.org>
+;;; Copyright © 2020-2024 Ludovic Courtès <ludo@gnu.org>
 ;;; Copyright © 2020 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
 ;;; Copyright © 2021 Pierre Langlois <pierre.langlois@gmx.com>
 ;;; Copyright © 2022 Marius Bakke <marius@gnu.org>
@@ -277,6 +277,7 @@ (define (run-childhurd-test)
               (let ((session (make-session #:user "test"
                                            #:port 10022
                                            #:host "localhost"
+                                           #:timeout 120
                                            #:log-verbosity 'rare)))
                 (match (connect! session)
                   ('ok
-- 
2.41.0





^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [bug#68258] [PATCH 3/7] DRAFT gnu: shepherd: Update to 0.10.3.
  2024-01-05 10:59 [bug#68258] [PATCH 0/7] Upgrading Shepherd and moving the Hurd to 0.10.x Ludovic Courtès
  2024-01-05 10:56 ` [bug#68258] [PATCH 1/7] services: openssh: Add dependency on ‘networking’ Ludovic Courtès
  2024-01-05 10:59 ` [bug#68258] [PATCH 2/7] tests: childhurd: Increase SSH connection timeout Ludovic Courtès
@ 2024-01-05 10:59 ` Ludovic Courtès
  2024-01-05 10:59 ` [bug#68258] [PATCH 4/7] system: hurd: Use the Shepherd 0.10.x Ludovic Courtès
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 16+ messages in thread
From: Ludovic Courtès @ 2024-01-05 10:59 UTC (permalink / raw)
  To: 68258; +Cc: Ludovic Courtès

DRAFT: Update to the actual release.

* gnu/packages/admin.scm (shepherd-0.10): Update to 0.10.3.

Change-Id: I6b14a41c22a18bcf0c5bd380d7f118276d0f761c
---
 gnu/packages/admin.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index 377caf8793..e4de0c25d4 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -373,14 +373,14 @@ (define-public shepherd-0.9
 (define-public shepherd-0.10
   (package
     (inherit shepherd-0.9)
-    (version "0.10.2")
+    (version "0.10.3rc1")
     (source (origin
               (method url-fetch)
-              (uri (string-append "mirror://gnu/shepherd/shepherd-"
+              (uri (string-append "https://alpha.gnu.org/gnu/shepherd/shepherd-"
                                   version ".tar.gz"))
               (sha256
                (base32
-                "0v9ld9gbqdp5ya380fbkdsxa0iqr90gi6yk004ccz3n792nq6wlj"))))
+                "05zjaqh2xzc929vlk5qvl8h6w7irm56j3nx8cw1z4fra6mmsgdgh"))))
     (native-inputs (modify-inputs (package-native-inputs shepherd-0.9)
                      (replace "guile-fibers"
                        ;; Work around
-- 
2.41.0





^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [bug#68258] [PATCH 4/7] system: hurd: Use the Shepherd 0.10.x.
  2024-01-05 10:59 [bug#68258] [PATCH 0/7] Upgrading Shepherd and moving the Hurd to 0.10.x Ludovic Courtès
                   ` (2 preceding siblings ...)
  2024-01-05 10:59 ` [bug#68258] [PATCH 3/7] DRAFT gnu: shepherd: Update to 0.10.3 Ludovic Courtès
@ 2024-01-05 10:59 ` Ludovic Courtès
  2024-01-05 10:59 ` [bug#68258] [PATCH 5/7] services: shepherd: Use the 0.10.x GOOPS-less interface Ludovic Courtès
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 16+ messages in thread
From: Ludovic Courtès @ 2024-01-05 10:59 UTC (permalink / raw)
  To: 68258; +Cc: Ludovic Courtès

* gnu/system.scm (hurd-default-essential-services): Remove reference to
‘shepherd-0.8’.
* gnu/system/hurd.scm (%base-packages/hurd): Replace ‘shepherd-0.8’ with
‘shepherd-0.10’.

Change-Id: I9f1800693cda456286450d3d0bb6f7e3da85d55e
---
 gnu/system.scm      | 4 +---
 gnu/system/hurd.scm | 4 ++--
 2 files changed, 3 insertions(+), 5 deletions(-)

diff --git a/gnu/system.scm b/gnu/system.scm
index 279b9df5c0..be15615879 100644
--- a/gnu/system.scm
+++ b/gnu/system.scm
@@ -804,9 +804,7 @@ (define (hurd-default-essential-services os)
           %boot-service
           %hurd-startup-service
           %activation-service
-          (service shepherd-root-service-type
-                   (shepherd-configuration
-                    (shepherd shepherd-0.8)))     ;no Fibers
+          (service shepherd-root-service-type)
 
           (service user-processes-service-type)
           (account-service (append (operating-system-accounts os)
diff --git a/gnu/system/hurd.scm b/gnu/system/hurd.scm
index 3b138bef65..cbe0081382 100644
--- a/gnu/system/hurd.scm
+++ b/gnu/system/hurd.scm
@@ -1,5 +1,5 @@
 ;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2020-2022 Ludovic Courtès <ludo@gnu.org>
+;;; Copyright © 2020-2023 Ludovic Courtès <ludo@gnu.org>
 ;;; Copyright © 2020, 2023 Janneke Nieuwenhuizen <janneke@gnu.org>
 ;;;
 ;;; This file is part of GNU Guix.
@@ -70,7 +70,7 @@ (define %base-packages/hurd
   ;; Note: the Shepherd comes before the Hurd, not just because its duty is to
   ;; shepherd the herd, but also because we want its 'halt' and 'reboot'
   ;; commands to take precedence.
-  (list shepherd-0.8 hurd netdde bash coreutils file findutils grep sed
+  (list shepherd-0.10 hurd netdde bash coreutils file findutils grep sed
         diffutils patch gawk tar gzip bzip2 xz lzip
         guile-3.0-latest guile-colorized guile-readline
         net-base nss-certs inetutils less procps shadow sudo which
-- 
2.41.0





^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [bug#68258] [PATCH 5/7] services: shepherd: Use the 0.10.x GOOPS-less interface.
  2024-01-05 10:59 [bug#68258] [PATCH 0/7] Upgrading Shepherd and moving the Hurd to 0.10.x Ludovic Courtès
                   ` (3 preceding siblings ...)
  2024-01-05 10:59 ` [bug#68258] [PATCH 4/7] system: hurd: Use the Shepherd 0.10.x Ludovic Courtès
@ 2024-01-05 10:59 ` Ludovic Courtès
  2024-01-05 10:59 ` [bug#68258] [PATCH 6/7] home: services: shepherd: Use the 0.10.x interface Ludovic Courtès
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 16+ messages in thread
From: Ludovic Courtès @ 2024-01-05 10:59 UTC (permalink / raw)
  To: 68258; +Cc: Ludovic Courtès

* gnu/services/shepherd.scm (%default-modules): Remove (oop goops).
(shepherd-service-file): Use (service …) instead of (make <service> …).
Use ‘actions’ instead of ‘make-actions’.
(scm->go): Remove use of (oop goops).
(shepherd-configuration-file): Pass ‘register-services’ a list.
Use ‘start-in-the-background’ unconditionally.

Change-Id: I0ad1ba32e339c56ee31e59f160b53d3581277d97
---
 gnu/services/shepherd.scm | 30 ++++++++++--------------------
 1 file changed, 10 insertions(+), 20 deletions(-)

diff --git a/gnu/services/shepherd.scm b/gnu/services/shepherd.scm
index 8e122f1aab..5ebac129ce 100644
--- a/gnu/services/shepherd.scm
+++ b/gnu/services/shepherd.scm
@@ -183,7 +183,6 @@ (define %default-imported-modules
 (define %default-modules
   ;; Default set of modules visible in a service's file.
   `((shepherd service)
-    (oop goops)
     ((guix build utils) #:hide (delete))
     (guix build syscalls)))
 
@@ -300,10 +299,10 @@ (define (shepherd-service-file service)
                  #~(begin
                      (use-modules #$@(shepherd-service-modules service))
 
-                     (make <service>
-                       #:docstring '#$(shepherd-service-documentation service)
-                       #:provides '#$(shepherd-service-provision service)
-                       #:requires '#$(shepherd-service-requirement service)
+                     (service
+                      '#$(shepherd-service-provision service)
+                       #:documentation '#$(shepherd-service-documentation service)
+                       #:requirement '#$(shepherd-service-requirement service)
 
                        ;; The 'one-shot?' slot is new in Shepherd 0.6.0.
                        ;; Older versions ignore it.
@@ -313,7 +312,7 @@ (define (shepherd-service-file service)
                        #:start #$(shepherd-service-start service)
                        #:stop #$(shepherd-service-stop service)
                        #:actions
-                       (make-actions
+                       (actions
                         #$@(map (match-lambda
                                   (($ <shepherd-action> name proc doc)
                                    #~(#$name #$doc #$proc)))
@@ -338,7 +337,6 @@ (define (scm->go file shepherd)
 
                          ;; Do the same as the Shepherd's 'load-in-user-module'.
                          (let ((env (make-fresh-user-module)))
-                           (module-use! env (resolve-interface '(oop goops)))
                            (module-use! env (resolve-interface '(shepherd service)))
                            (with-target #$(or target #~%host-type)
                              (lambda _
@@ -401,25 +399,17 @@ (define (shepherd-configuration-file services shepherd)
           ;; than a kernel panic.
           (call-with-error-handling
             (lambda ()
-              (apply register-services
-                     (parameterize ((current-warning-port
-                                     (%make-void-port "w")))
-                       (map load-compiled '#$(map scm->go files))))))
+              (register-services
+               (parameterize ((current-warning-port
+                               (%make-void-port "w")))
+                 (map load-compiled '#$(map scm->go files))))))
 
           (format #t "starting services...~%")
           (let ((services-to-start
                  '#$(append-map shepherd-service-provision
                                 (filter shepherd-service-auto-start?
                                         services))))
-            (if (defined? 'start-in-the-background)
-                (start-in-the-background services-to-start)
-                (for-each (lambda (service)       ;pre-0.9.0 compatibility
-                            (guard (c ((service-error? c)
-                                       (format (current-error-port)
-                                               "failed to start service '~a'~%"
-                                               service)))
-                              (start service)))
-                          services-to-start))
+            (start-in-the-background services-to-start)
 
             ;; Hang up stdin.  At this point, we assume that 'start' methods
             ;; that required user interaction on the console (e.g.,
-- 
2.41.0





^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [bug#68258] [PATCH 6/7] home: services: shepherd: Use the 0.10.x interface.
  2024-01-05 10:59 [bug#68258] [PATCH 0/7] Upgrading Shepherd and moving the Hurd to 0.10.x Ludovic Courtès
                   ` (4 preceding siblings ...)
  2024-01-05 10:59 ` [bug#68258] [PATCH 5/7] services: shepherd: Use the 0.10.x GOOPS-less interface Ludovic Courtès
@ 2024-01-05 10:59 ` Ludovic Courtès
  2024-01-05 10:59 ` [bug#68258] [PATCH 7/7] services: bitlbee: Use ‘make-inetd-constructor’ unconditionally Ludovic Courtès
  2024-01-05 17:59 ` [bug#68258] [PATCH 0/7] Upgrading Shepherd and moving the Hurd to 0.10.x Janneke Nieuwenhuizen
  7 siblings, 0 replies; 16+ messages in thread
From: Ludovic Courtès @ 2024-01-05 10:59 UTC (permalink / raw)
  To: 68258; +Cc: Ludovic Courtès

* gnu/home/services/shepherd.scm (home-shepherd-configuration-file):
Pass ‘register-services’ a list.  Call ‘start-in-the-background’
unconditionally.

Change-Id: Id7ba005949653a9ac065c47eddb425df4f4792aa
---
 gnu/home/services/shepherd.scm | 12 ++++--------
 1 file changed, 4 insertions(+), 8 deletions(-)

diff --git a/gnu/home/services/shepherd.scm b/gnu/home/services/shepherd.scm
index bd068c37fc..176f4575cb 100644
--- a/gnu/home/services/shepherd.scm
+++ b/gnu/home/services/shepherd.scm
@@ -1,6 +1,7 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2021, 2023 Andrew Tropin <andrew@trop.in>
 ;;; Copyright © 2021 Xinglu Chen <public@yoctocell.xyz>
+;;; Copyright © 2024 Ludovic Courtès <ludo@gnu.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -75,11 +76,8 @@ (define (home-shepherd-configuration-file config)
       #~(begin
           (use-modules (srfi srfi-34)
                        (system repl error-handling))
-          (apply
-           register-services
-           (map
-            (lambda (file) (load file))
-            '#$files))
+
+          (register-services (map load '#$files))
 
           #$@(if daemonize?
                  `((action 'root 'daemonize))
@@ -90,9 +88,7 @@ (define (home-shepherd-configuration-file config)
                  '#$(append-map shepherd-service-provision
                                 (filter shepherd-service-auto-start?
                                         services))))
-            (if (defined? 'start-in-the-background)
-                (start-in-the-background services-to-start)
-                (for-each start services-to-start))
+            (start-in-the-background services-to-start)
 
             (redirect-port (open-input-file "/dev/null")
                            (current-input-port)))))
-- 
2.41.0





^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [bug#68258] [PATCH 7/7] services: bitlbee: Use ‘make-inetd-constructor’ unconditionally.
  2024-01-05 10:59 [bug#68258] [PATCH 0/7] Upgrading Shepherd and moving the Hurd to 0.10.x Ludovic Courtès
                   ` (5 preceding siblings ...)
  2024-01-05 10:59 ` [bug#68258] [PATCH 6/7] home: services: shepherd: Use the 0.10.x interface Ludovic Courtès
@ 2024-01-05 10:59 ` Ludovic Courtès
  2024-01-05 17:59 ` [bug#68258] [PATCH 0/7] Upgrading Shepherd and moving the Hurd to 0.10.x Janneke Nieuwenhuizen
  7 siblings, 0 replies; 16+ messages in thread
From: Ludovic Courtès @ 2024-01-05 10:59 UTC (permalink / raw)
  To: 68258; +Cc: Ludovic Courtès

This construct was introduced in Shepherd 0.9.0.

* gnu/services/messaging.scm (bitlbee-shepherd-service): Use
‘make-inetd-constructor’ unconditionally.

Change-Id: Id1b79077d60609c7f95439ee0d097dfe6e66dd2e
---
 gnu/services/messaging.scm | 51 ++++++++++++++------------------------
 1 file changed, 18 insertions(+), 33 deletions(-)

diff --git a/gnu/services/messaging.scm b/gnu/services/messaging.scm
index 7505810e7c..9702170b3e 100644
--- a/gnu/services/messaging.scm
+++ b/gnu/services/messaging.scm
@@ -1,7 +1,7 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2017, 2018 Clément Lassieur <clement@lassieur.org>
 ;;; Copyright © 2017 Mathieu Othacehe <m.othacehe@gmail.com>
-;;; Copyright © 2015, 2017-2020, 2022, 2023 Ludovic Courtès <ludo@gnu.org>
+;;; Copyright © 2015, 2017-2020, 2022-2024 Ludovic Courtès <ludo@gnu.org>
 ;;; Copyright © 2018 Pierre-Antoine Rouby <contact@parouby.fr>
 ;;;
 ;;; This file is part of GNU Guix.
@@ -857,39 +857,24 @@ (define bitlbee-shepherd-service
               ;; on 'networking'.
               (requirement '(user-processes networking))
 
-              (start #~(if (defined? 'make-inetd-constructor)
+              (start #~(make-inetd-constructor
+                        (list #$bitlbee* "-I" "-c" #$conf)
+                        (list (endpoint
+                               (addrinfo:addr
+                                (car (getaddrinfo #$interface
+                                                  #$(number->string port)
+                                                  (logior AI_NUMERICHOST
+                                                          AI_NUMERICSERV))))))
+                        #:requirements '#$requirement
+                        #:service-name-stem "bitlbee"
+                        #:user "bitlbee" #:group "bitlbee"
 
-                           (make-inetd-constructor
-                            (list #$bitlbee* "-I" "-c" #$conf)
-                            (list (endpoint
-                                   (addrinfo:addr
-                                    (car (getaddrinfo #$interface
-                                                      #$(number->string port)
-                                                      (logior AI_NUMERICHOST
-                                                              AI_NUMERICSERV))))))
-                            #:requirements '#$requirement
-                            #:service-name-stem "bitlbee"
-                            #:user "bitlbee" #:group "bitlbee"
-
-                            ;; Allow 'bitlbee-purple' to use libpurple plugins.
-                            #:environment-variables
-                            (list (string-append "PURPLE_PLUGIN_PATH="
-                                                 #$plugins "/lib/purple-2")
-                                  "GUIX_LOCPATH=/run/current-system/locale"))
-
-                           (make-forkexec-constructor
-                            (list #$(file-append bitlbee "/sbin/bitlbee")
-                                  "-n" "-F" "-u" "bitlbee" "-c" #$conf)
-
-                            ;; Allow 'bitlbee-purple' to use libpurple plugins.
-                            #:environment-variables
-                            (list (string-append "PURPLE_PLUGIN_PATH="
-                                                 #$plugins "/lib/purple-2"))
-
-                            #:pid-file "/var/run/bitlbee.pid")))
-              (stop  #~(if (defined? 'make-inetd-destructor)
-                           (make-inetd-destructor)
-                           (make-kill-destructor)))))))))
+                        ;; Allow 'bitlbee-purple' to use libpurple plugins.
+                        #:environment-variables
+                        (list (string-append "PURPLE_PLUGIN_PATH="
+                                             #$plugins "/lib/purple-2")
+                              "GUIX_LOCPATH=/run/current-system/locale")))
+              (stop  #~(make-inetd-destructor))))))))
 
 (define %bitlbee-accounts
   ;; User group and account to run BitlBee.
-- 
2.41.0





^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [bug#68258] [PATCH 0/7] Upgrading Shepherd and moving the Hurd to 0.10.x
  2024-01-05 10:59 [bug#68258] [PATCH 0/7] Upgrading Shepherd and moving the Hurd to 0.10.x Ludovic Courtès
                   ` (6 preceding siblings ...)
  2024-01-05 10:59 ` [bug#68258] [PATCH 7/7] services: bitlbee: Use ‘make-inetd-constructor’ unconditionally Ludovic Courtès
@ 2024-01-05 17:59 ` Janneke Nieuwenhuizen
  2024-01-06 16:15   ` Janneke Nieuwenhuizen
  2024-01-07 11:14   ` [bug#68258] " Ludovic Courtès
  7 siblings, 2 replies; 16+ messages in thread
From: Janneke Nieuwenhuizen @ 2024-01-05 17:59 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 68258

[-- Attachment #1: Type: text/plain, Size: 1126 bytes --]

Ludovic Courtès writes:

Hey!

> With the upcoming Shepherd 0.10.3, which I plan to publish in the
> coming days, I’d like to make these changes: switching the Hurd to
> 0.10.x (instead of 0.8.x!) since it’s now functional,

Yay!  I had trouble building (running the test suite of?) fibers before
on the Hurd, IIRC.

I haven't re-checked this, so we might have to check this or disable
(some) tests to allow native builds.  Really just wildly guessing here.

> which in turn allows us to use the 0.10.x interfaces (GOOPS-less; this
> is a step before the Shepherd 1.0, which will not support the GOOPS
> interface at all¹).
>
> Thoughts?

Hmm, I've built a bare-hurd.tmpl but ssh doesn't start for me (see log).

A line similar to

--8<---------------cut here---------------start------------->8---
/gnu/store/3lqwp154zlj79ndm92ay9g0hwvjsf3m9-sshd_config line 13: Unsupported option UsePAM
--8<---------------cut here---------------end--------------->8---

that used to appear second-last is now missing (see log).

(I've tried reverting 1/7 but that doesn't work)

Greetings,
Janneke


[-- Attachment #2: bare-hurd.log --]
[-- Type: application/octet-stream, Size: 4466 bytes --]

Booting from Hard Disk...
GRUB loading.
Welcome to GRUB!

GNU Mach 1.8
ELF section header table at c00103fc
biosmem: physical memory map:
biosmem: 000000000000000000:00000000000009f000, available
biosmem: 00000000000009fc00:0000000000000a0000, reserved
biosmem: 0000000000000f0000:000000000000100000, reserved
biosmem: 000000000000100000:0000000000bffe0000, available
biosmem: 0000000000bffe0000:0000000000c0000000, reserved
biosmem: 0000000000feffc000:0000000000ff000000, reserved
biosmem: 0000000000fffc0000:000000000100000000, reserved
biosmem: 000000000100000000:000000000140000000, available
Loaded ELF symbol table	for mach (5137 symbols)
vm_page: page table size: 786384 entries (43008k)
vm_page: DMA: pages: 4080 (15M), free: 0 (0M)
vm_page: DMA: min:500 low:600 high:1000
vm_page: DIRECTMAP: pages: 219136 (856M), free: 198741 (776M)
vm_page: DIRECTMAP: min:10956 low:13148 high:21913
vm_page: HIGHMEM: pages: 563168 (2199M), free: 0 (0M)
vm_page: HIGHMEM: min:28158 low:33790 high:56316
pcibios_init : BIOS32 Service Directory structure at 0xf6040
pcibios_init : BIOS32 Service Directory entry at 0xfd2bf
pcibios_init : PCI BIOS revision 2.10 entry at 0xfd21d
Probing PCI hardware.
ide: Intel 82371 PIIX3 (dual FIFO) DMA Bus Mastering IDE 
    Controller on PCI bus 0 function 9
ide: BM-DMA feature is not enabled (BIOS), enabling
    ide0: BM-DMA at 0xc080-0xc087
    ide1: BM-DMA at 0xc088-0xc08f
hd0: got CHS=1024/255/63 CTL=c8 from BIOS
intnull(14)
hd0: QEMU HARDDISK, 25601MB w/256kB Cache, CHS=3263/255/63
intnull(15)
hd2: QEMU DVD-ROM, ATAPI CDROM drive
ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
ide1 at 0x170-0x177,0x376 on irq 15
Floppy drive(s): fd0 is 2.88M AMI BIOS
intnull(6)
FDC 0 is a S82078B
probing scsi 15/16: ncr53c8xx - revision 2.5f.1 
done
scsi : 0 hosts.
scsi : detected total.
Partition check (DOS partitions):
 hd0: hd0s1
com 2 out of range
lpr0: at atbus0, port = 378x, spl = 6d, pic = 7.
RTC time is 2024-01-05 17:35:12
module 0: pci-arbiter --host-priv-port=${host-port} --device-master-port=${device-port} --next-task=${disk-task} $(pci-task=task-create) $(task-resume)
module 1: rumpdisk --next-task=${fs-task} $(disk-task=task-create)
module 2: ext2fs --multiboot-command-line=${kernel-command-line} --exec-server-task=${exec-task} --store-type=typed --x-xattr-translator-records ${root} $(fs-task=task-create)
module 3: exec $(exec-task=task-create)
4 multiboot modules
task loaded: pci-arbiter --host-priv-port=1 --device-master-port=2 --next-task=3
task loaded: rumpdisk --next-task=1
task loaded: ext2fs --multiboot-command-line=root=part:1:device:hd0 root=87c2de13-2937-7af4-d0fa-141f87c2de13 gnu.system=/gnu/store/c8nz5i9kja776frllgi8v50zmmrd35dy-system gnu.load=/gnu/store/c8nz5i9kja776frllgi8v50zmmrd35dy-system/boot console=com0 --exec-server-task=1 --store-type=typed --x-xattr-translator-records part:1:device:hd0
task loaded: exec

start pci-arbiter: pci rumpdisk Kernel is already driving an IDE device, skipping probing disks
Hurd server bootstrap: ext2fs[part:1:device:hd0] exec startup proc auth.
Usage: fsck [OPTION...] [ DEVICE|FSYS... ]
Try `fsck --help' or `fsck --usage' for more information.
Starting /gnu/store/c8nz5i9kja776frllgi8v50zmmrd35dy-system/rc...
Welcome, this is GNU's early boot Guile.
Use 'gnu.repl' for an initrd REPL.

Linking /hurd from /gnu/store/c8nz5i9kja776frllgi8v50zmmrd35dy-system/profile/hurd...
Setting-up essential translators...
Starting pager...
loading '/gnu/store/c8nz5i9kja776frllgi8v50zmmrd35dy-system/boot'...
WARNING: (guile-user): imported module (guix build utils) overrides core binding `delete'
making '/gnu/store/c8nz5i9kja776frllgi8v50zmmrd35dy-system' the current system...
WARNING: (guile-user): imported module (guix build utils) overrides core binding `delete'
setting up setuid programs in '/run/setuid-programs'...
populating /etc from /gnu/store/f1cd308mf1541vj9dvawaq90wrxmi7j2-etc...
WARNING: (guile-user): imported module (guix build utils) overrides core binding `delete'
WARNING: (guile-user): imported module (guix build utils) overrides core binding `delete'
ssh-keygen: generating new host keys: RSA ECDSA ED25519 
System lacks support for 'signalfd'; using fallback mechanism.
hd0: bad DMA status: 0xff
hd0: dma_intr: status=0x50 { DriveReady SeekComplete }
hd0: irq timeout: status=0x58 { DriveReady SeekComplete DataRequest }
ide0: reset: master: error (0x00?)
irq handler [11]: new delivery port f631e6c0 entry f4f7f4c0
unexpected ACK from keyboard

[-- Attachment #3: Type: text/plain, Size: 164 bytes --]


-- 
Janneke Nieuwenhuizen <janneke@gnu.org>  | GNU LilyPond https://LilyPond.org
Freelance IT https://www.JoyOfSource.com | Avatar® https://AvatarAcademy.com

^ permalink raw reply	[flat|nested] 16+ messages in thread

* [bug#68258] [PATCH 1/7] services: openssh: Add dependency on ‘networking’.
  2024-01-05 10:56 ` [bug#68258] [PATCH 1/7] services: openssh: Add dependency on ‘networking’ Ludovic Courtès
@ 2024-01-05 18:00   ` Janneke Nieuwenhuizen
  0 siblings, 0 replies; 16+ messages in thread
From: Janneke Nieuwenhuizen @ 2024-01-05 18:00 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 68258

Ludovic Courtès writes:

> * gnu/services/ssh.scm (openssh-shepherd-service): Add ‘networking’ to
> ‘requirement’.
> +         ;; On the Hurd, this can only be started after pfinet is up, hence
> +         ;; the dependency on 'networking'.
> +         (requirement '(pam syslogd loopback networking))
>           (provision '(ssh-daemon ssh sshd))

This could be real nice.  On QEMU it always worked nicely for me, but on
bare iron, ssh would start too soon and fail and need a manual
[re]start.

Greetings,
Janneke

-- 
Janneke Nieuwenhuizen <janneke@gnu.org>  | GNU LilyPond https://LilyPond.org
Freelance IT https://www.JoyOfSource.com | Avatar® https://AvatarAcademy.com




^ permalink raw reply	[flat|nested] 16+ messages in thread

* [bug#68258] [PATCH 0/7] Upgrading Shepherd and moving the Hurd to 0.10.x
  2024-01-05 17:59 ` [bug#68258] [PATCH 0/7] Upgrading Shepherd and moving the Hurd to 0.10.x Janneke Nieuwenhuizen
@ 2024-01-06 16:15   ` Janneke Nieuwenhuizen
  2024-01-06 16:32     ` Janneke Nieuwenhuizen
  2024-01-07 11:12     ` Ludovic Courtès
  2024-01-07 11:14   ` [bug#68258] " Ludovic Courtès
  1 sibling, 2 replies; 16+ messages in thread
From: Janneke Nieuwenhuizen @ 2024-01-06 16:15 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 68258

Janneke Nieuwenhuizen writes:

Hi,

> Ludovic Courtès writes:
>
> Hey!
>
> Hmm, I've built a bare-hurd.tmpl but ssh doesn't start for me (see log).

[..]

> (I've tried reverting 1/7 but that doesn't work)

So, I've tried without CONSOLE=COM0 using --display curses and the
problem is that (ipv6) networking didn't, and won't start anymore:

--8<---------------cut here---------------start------------->8---
root@guixydevel ~# herd start networking
starting '/gnu/store/9mxaxp5nj70d5wkn8d32bxhybfvglvi3-hurd-v0.9.git20230216/hurd /pfinet "--ipv6" "/servers/socket/26" "--interface" "/dev/eth0" "--address" "10. 0.2.15" "--netmask" "255.255.255.0" "--gateway" "10.0.2.2"'
herd: error: exception caught while executing 'start' on service 'networking':  
Throw to key `%exception' with args `("#<&invoke-error program: \"/gnu/store/9mxaxp5nj70d5wkn8d32bxhybfvglvi3-hurd-v0.9.git20230216/bin/settrans\" arguments: (\ "--active\" \"--create\" \"--keep-active\" \"/servers/socket/2\" \"/gnu/store/9mxaxp5nj70d5wkn8d32bxhybfvglvi3-hurd-v0.9.git20230216/hurd/pfinet\" \"--ipv6\" \"/servers/socket/26\" \"--interface\" \"/dev/eth0\" \"--address\" \"10.0.2.15\" \"--netmask\" \"255.255.255.0\" \"--gateway\" \"10.0.2.2\") exit-status: 4 term-signal: #f stop-signal: #f>")'.
--8<---------------cut here---------------end--------------->8---

That doesn't tell us much, but running

--8<---------------cut here---------------start------------->8---
settrans --active --create --keep-active /servers/socket/2 /gnu/store/9mxaxp5nj70d5wkn8d32bxhybfvglvi3-hurd-v0.9.git20230216/hurd/pfinet --ipv6 /servers/socket/26 --interface /dev/eth0 --address 10.0.2.15 --netmask 255.255.255.0 --gateway 10.0.2.2
--8<---------------cut here---------------end--------------->8---

Gives

    .../hurd/pfinet: /servers/socket/26: Device or resource busy

Any ideas how this may have happenened?

-- 
Janneke Nieuwenhuizen <janneke@gnu.org>  | GNU LilyPond https://LilyPond.org
Freelance IT https://www.JoyOfSource.com | Avatar® https://AvatarAcademy.com




^ permalink raw reply	[flat|nested] 16+ messages in thread

* [bug#68258] [PATCH 0/7] Upgrading Shepherd and moving the Hurd to 0.10.x
  2024-01-06 16:15   ` Janneke Nieuwenhuizen
@ 2024-01-06 16:32     ` Janneke Nieuwenhuizen
  2024-01-07 11:12     ` Ludovic Courtès
  1 sibling, 0 replies; 16+ messages in thread
From: Janneke Nieuwenhuizen @ 2024-01-06 16:32 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 68258

[-- Attachment #1: Type: text/plain, Size: 297 bytes --]

Janneke Nieuwenhuizen writes:

> Any ideas how this may have happenened?

FWIW, reverting to shepherd-0.8

cd1100482d Revert "system: hurd: Use the Shepherd 0.10.x."
d82e9a0494 Revert "services: shepherd: Use the 0.10.x GOOPS-less interface."

"fixes" starting of networking.  :-(

Log attached.


[-- Attachment #2: shepherd-0.8.log --]
[-- Type: application/octet-stream, Size: 4350 bytes --]

GNU Mach 1.8
ELF section header table at c00103fc
biosmem: physical memory map:
biosmem: 000000000000000000:00000000000009f000, available
biosmem: 00000000000009fc00:0000000000000a0000, reserved
biosmem: 0000000000000f0000:000000000000100000, reserved
biosmem: 000000000000100000:0000000000bffe0000, available
biosmem: 0000000000bffe0000:0000000000c0000000, reserved
biosmem: 0000000000feffc000:0000000000ff000000, reserved
biosmem: 0000000000fffc0000:000000000100000000, reserved
biosmem: 000000000100000000:000000000140000000, available
Loaded ELF symbol table	for mach (5137 symbols)
vm_page: page table size: 786384 entries (43008k)
vm_page: DMA: pages: 4080 (15M), free: 0 (0M)
vm_page: DMA: min:500 low:600 high:1000
vm_page: DIRECTMAP: pages: 219136 (856M), free: 198741 (776M)
vm_page: DIRECTMAP: min:10956 low:13148 high:21913
vm_page: HIGHMEM: pages: 563168 (2199M), free: 0 (0M)
vm_page: HIGHMEM: min:28158 low:33790 high:56316
pcibios_init : BIOS32 Service Directory structure at 0xf6040
pcibios_init : BIOS32 Service Directory entry at 0xfd2bf
pcibios_init : PCI BIOS revision 2.10 entry at 0xfd21d
Probing PCI hardware.
ide: Intel 82371 PIIX3 (dual FIFO) DMA Bus Mastering IDE 
    Controller on PCI bus 0 function 9
ide: BM-DMA feature is not enabled (BIOS), enabling
    ide0: BM-DMA at 0xc080-0xc087
    ide1: BM-DMA at 0xc088-0xc08f
hd0: got CHS=1024/255/63 CTL=c8 from BIOS
intnull(14)
hd0: QEMU HARDDISK, 25601MB w/256kB Cache, CHS=3263/255/63
intnull(15)
hd2: QEMU DVD-ROM, ATAPI CDROM drive
ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
ide1 at 0x170-0x177,0x376 on irq 15
Floppy drive(s): fd0 is 2.88M AMI BIOS
intnull(6)
FDC 0 is a S82078B
probing scsi 15/16: ncr53c8xx - revision 2.5f.1 
done
scsi : 0 hosts.
scsi : detected total.
Partition check (DOS partitions):
 hd0: hd0s1
com 2 out of range
lpr0: at atbus0, port = 378x, spl = 6d, pic = 7.
RTC time is 2024-01-06 16:29:22
module 0: pci-arbiter --host-priv-port=${host-port} --device-master-port=${device-port} --next-task=${disk-task} $(pci-task=task-create) $(task-resume)
module 1: rumpdisk --next-task=${fs-task} $(disk-task=task-create)
module 2: ext2fs --multiboot-command-line=${kernel-command-line} --exec-server-task=${exec-task} --store-type=typed --x-xattr-translator-records ${root} $(fs-task=task-create)
module 3: exec $(exec-task=task-create)
4 multiboot modules
task loaded: pci-arbiter --host-priv-port=1 --device-master-port=2 --next-task=3
task loaded: rumpdisk --next-task=1
task loaded: ext2fs --multiboot-command-line=root=part:1:device:hd0 root=87c2de13-2937-7af4-d0fa-141f87c2de13 gnu.system=/gnu/store/w3l2sipgjcswg0yhyvyj4kyl1wspr9ny-system gnu.load=/gnu/store/w3l2sipgjcswg0yhyvyj4kyl1wspr9ny-system/boot console=com0 --exec-server-task=1 --store-type=typed --x-xattr-translator-records part:1:device:hd0
task loaded: exec

start pci-arbiter: pci rumpdisk Kernel is already driving an IDE device, skipping probing disks
Hurd server bootstrap: ext2fs[part:1:device:hd0] exec startup proc auth.
Usage: fsck [OPTION...] [ DEVICE|FSYS... ]
Try `fsck --help' or `fsck --usage' for more information.
Starting /gnu/store/w3l2sipgjcswg0yhyvyj4kyl1wspr9ny-system/rc...
Welcome, this is GNU's early boot Guile.
Use 'gnu.repl' for an initrd REPL.

Setting-up essential translators...
Starting pager...
loading '/gnu/store/w3l2sipgjcswg0yhyvyj4kyl1wspr9ny-system/boot'...
WARNING: (guile-user): imported module (guix build utils) overrides core binding `delete'
making '/gnu/store/w3l2sipgjcswg0yhyvyj4kyl1wspr9ny-system' the current system...
WARNING: (guile-user): imported module (guix build utils) overrides core binding `delete'
setting up setuid programs in '/run/setuid-programs'...
populating /etc from /gnu/store/xj9m7frk7pg6k3wd3a7zkjgv2q64wj2n-etc...
WARNING: (guile-user): imported module (guix build utils) overrides core binding `delete'
WARNING: (guile-user): imported module (guix build utils) overrides core binding `delete'
ssh-keygen: generating new host keys: RSA ECDSA ED25519 
hd0: bad DMA status: 0xff
hd0: dma_intr: status=0x50 { DriveReady SeekComplete }
hd0: irq timeout: status=0x58 { DriveReady SeekComplete DataRequest }
ide0: reset: master: error (0x00?)
irq handler [11]: new delivery port f59cbd00 entry f4f7f500
/gnu/store/pw4ax5g47ciqxqcwbzqbmwq31wfa28c3-sshd_config line 13: Unsupported option UsePAM
unexpected ACK from keyboard

[-- Attachment #3: Type: text/plain, Size: 164 bytes --]


-- 
Janneke Nieuwenhuizen <janneke@gnu.org>  | GNU LilyPond https://LilyPond.org
Freelance IT https://www.JoyOfSource.com | Avatar® https://AvatarAcademy.com

^ permalink raw reply	[flat|nested] 16+ messages in thread

* [bug#68258] [PATCH 0/7] Upgrading Shepherd and moving the Hurd to 0.10.x
  2024-01-06 16:15   ` Janneke Nieuwenhuizen
  2024-01-06 16:32     ` Janneke Nieuwenhuizen
@ 2024-01-07 11:12     ` Ludovic Courtès
  2024-01-07 14:54       ` Janneke Nieuwenhuizen
  1 sibling, 1 reply; 16+ messages in thread
From: Ludovic Courtès @ 2024-01-07 11:12 UTC (permalink / raw)
  To: Janneke Nieuwenhuizen; +Cc: 68258

Hi!

Janneke Nieuwenhuizen <janneke@gnu.org> skribis:

> So, I've tried without CONSOLE=COM0 using --display curses and the
> problem is that (ipv6) networking didn't, and won't start anymore:
>
> root@guixydevel ~# herd start networking
> starting '/gnu/store/9mxaxp5nj70d5wkn8d32bxhybfvglvi3-hurd-v0.9.git20230216/hurd /pfinet "--ipv6" "/servers/socket/26" "--interface" "/dev/eth0" "--address" "10. 0.2.15" "--netmask" "255.255.255.0" "--gateway" "10.0.2.2"'
> herd: error: exception caught while executing 'start' on service 'networking':  
> Throw to key `%exception' with args `("#<&invoke-error program: \"/gnu/store/9mxaxp5nj70d5wkn8d32bxhybfvglvi3-hurd-v0.9.git20230216/bin/settrans\" arguments: (\ "--active\" \"--create\" \"--keep-active\" \"/servers/socket/2\" \"/gnu/store/9mxaxp5nj70d5wkn8d32bxhybfvglvi3-hurd-v0.9.git20230216/hurd/pfinet\" \"--ipv6\" \"/servers/socket/26\" \"--interface\" \"/dev/eth0\" \"--address\" \"10.0.2.15\" \"--netmask\" \"255.255.255.0\" \"--gateway\" \"10.0.2.2\") exit-status: 4 term-signal: #f stop-signal: #f>")'.

There were a couple of issues on the way.  Most likely you hit
<https://issues.guix.gnu.org/64653> (now fixed), which was marking
‘networking’ as failing to start even though pfinet had been correctly
started.  Consequently, re-running ‘herd start networking’ would fail as
above because the translator was already running.

So if you rebase above 4e431fda5f2ec76b6d6a271be7c30b1324431329, it
should be fine!

Ludo’.




^ permalink raw reply	[flat|nested] 16+ messages in thread

* [bug#68258] [PATCH 0/7] Upgrading Shepherd and moving the Hurd to 0.10.x
  2024-01-05 17:59 ` [bug#68258] [PATCH 0/7] Upgrading Shepherd and moving the Hurd to 0.10.x Janneke Nieuwenhuizen
  2024-01-06 16:15   ` Janneke Nieuwenhuizen
@ 2024-01-07 11:14   ` Ludovic Courtès
  1 sibling, 0 replies; 16+ messages in thread
From: Ludovic Courtès @ 2024-01-07 11:14 UTC (permalink / raw)
  To: Janneke Nieuwenhuizen; +Cc: 68258

Janneke Nieuwenhuizen <janneke@gnu.org> skribis:

> Yay!  I had trouble building (running the test suite of?) fibers before
> on the Hurd, IIRC.
>
> I haven't re-checked this, so we might have to check this or disable
> (some) tests to allow native builds.  Really just wildly guessing here.

Yeah, so far I was testing the Shepherd’s test suites with:

  guix build -s i586-gnu -f guix.scm --without-tests=guile-fibers

I’ve already identified a bug in the libevent backend of Fibers; I’ll
take a look at the test suite.

Thanks for testing!

Ludo’.




^ permalink raw reply	[flat|nested] 16+ messages in thread

* [bug#68258] [PATCH 0/7] Upgrading Shepherd and moving the Hurd to 0.10.x
  2024-01-07 11:12     ` Ludovic Courtès
@ 2024-01-07 14:54       ` Janneke Nieuwenhuizen
  2024-01-08 23:54         ` bug#68258: " Ludovic Courtès
  0 siblings, 1 reply; 16+ messages in thread
From: Janneke Nieuwenhuizen @ 2024-01-07 14:54 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 68258

Ludovic Courtès writes:

Hey,

> Janneke Nieuwenhuizen <janneke@gnu.org> skribis:
>
>> So, I've tried without CONSOLE=COM0 using --display curses and the
>> problem is that (ipv6) networking didn't, and won't start anymore:

[..]
>
> There were a couple of issues on the way.  Most likely you hit
> <https://issues.guix.gnu.org/64653> (now fixed), which was marking
> ‘networking’ as failing to start even though pfinet had been correctly
> started.  Consequently, re-running ‘herd start networking’ would fail as
> above because the translator was already running.
>
> So if you rebase above 4e431fda5f2ec76b6d6a271be7c30b1324431329, it
> should be fine!

Yes, it now works for me.  I'm not sure how I missed this, sorry :)

Finally shepherd 0.10 on the Hurd, well done!

Greetings,
Janneke

-- 
Janneke Nieuwenhuizen <janneke@gnu.org>  | GNU LilyPond https://LilyPond.org
Freelance IT https://www.JoyOfSource.com | Avatar® https://AvatarAcademy.com




^ permalink raw reply	[flat|nested] 16+ messages in thread

* bug#68258: [PATCH 0/7] Upgrading Shepherd and moving the Hurd to 0.10.x
  2024-01-07 14:54       ` Janneke Nieuwenhuizen
@ 2024-01-08 23:54         ` Ludovic Courtès
  0 siblings, 0 replies; 16+ messages in thread
From: Ludovic Courtès @ 2024-01-08 23:54 UTC (permalink / raw)
  To: Janneke Nieuwenhuizen; +Cc: 68258-done

Hello!

Janneke Nieuwenhuizen <janneke@gnu.org> skribis:

> Yes, it now works for me.  I'm not sure how I missed this, sorry :)

Wo0t!

> Finally shepherd 0.10 on the Hurd, well done!

Pushed as 3eac1c82f7f1547aa6819db867b071a4ee7de8e3!

Commit 766ac72dba36657ce217d055d7672cbf01bd32ce also fixes a bug in the
libevent backend of Fibers (fix is now upstream:
<https://github.com/wingo/fibers/pull/102>).

Ludo’.




^ permalink raw reply	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2024-01-08 23:56 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-01-05 10:59 [bug#68258] [PATCH 0/7] Upgrading Shepherd and moving the Hurd to 0.10.x Ludovic Courtès
2024-01-05 10:56 ` [bug#68258] [PATCH 1/7] services: openssh: Add dependency on ‘networking’ Ludovic Courtès
2024-01-05 18:00   ` Janneke Nieuwenhuizen
2024-01-05 10:59 ` [bug#68258] [PATCH 2/7] tests: childhurd: Increase SSH connection timeout Ludovic Courtès
2024-01-05 10:59 ` [bug#68258] [PATCH 3/7] DRAFT gnu: shepherd: Update to 0.10.3 Ludovic Courtès
2024-01-05 10:59 ` [bug#68258] [PATCH 4/7] system: hurd: Use the Shepherd 0.10.x Ludovic Courtès
2024-01-05 10:59 ` [bug#68258] [PATCH 5/7] services: shepherd: Use the 0.10.x GOOPS-less interface Ludovic Courtès
2024-01-05 10:59 ` [bug#68258] [PATCH 6/7] home: services: shepherd: Use the 0.10.x interface Ludovic Courtès
2024-01-05 10:59 ` [bug#68258] [PATCH 7/7] services: bitlbee: Use ‘make-inetd-constructor’ unconditionally Ludovic Courtès
2024-01-05 17:59 ` [bug#68258] [PATCH 0/7] Upgrading Shepherd and moving the Hurd to 0.10.x Janneke Nieuwenhuizen
2024-01-06 16:15   ` Janneke Nieuwenhuizen
2024-01-06 16:32     ` Janneke Nieuwenhuizen
2024-01-07 11:12     ` Ludovic Courtès
2024-01-07 14:54       ` Janneke Nieuwenhuizen
2024-01-08 23:54         ` bug#68258: " Ludovic Courtès
2024-01-07 11:14   ` [bug#68258] " Ludovic Courtès

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.