diff options
| author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2025-04-19 21:41:16 +0900 |
|---|---|---|
| committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2025-04-19 21:43:18 +0900 |
| commit | a6c96cdb7060ccfc2d0fe27a45b9bcc9590aedd6 (patch) | |
| tree | 1f351624efe1e08c9d3d1683ad0d34761906190b /gnu/services | |
| parent | 7686fe9d4fa1c40fd78e2ed57c60531c94bc9fd7 (diff) | |
services: ngircd: Require networking.
Otherwise the service could fail starting if the networking interface takes
some time to be created during the boot (one such example are WireGuard
interfaces).
* gnu/services/messaging.scm (ngircd-configuration)
[shepherd-requirement]: Add networking.
* doc/guix.texi (Messaging Services): Update.
Change-Id: I387ae5780a35cad5b74d9883ac53f13de1a08c78
Diffstat (limited to 'gnu/services')
| -rw-r--r-- | gnu/services/messaging.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/services/messaging.scm b/gnu/services/messaging.scm index 2a93d42bf2a..adcc75dd1d0 100644 --- a/gnu/services/messaging.scm +++ b/gnu/services/messaging.scm @@ -1424,7 +1424,7 @@ for different users. Refer to @samp{man 5 ngircd.conf} for more details.") "Turn on debugging messages." (serializer empty-serializer)) (shepherd-requirement - (list-of-symbols '(user-processes)) + (list-of-symbols '(user-processes networking)) "Shepherd requirements the service should depend on." (serializer empty-serializer)) (global |
