aboutsummaryrefslogtreecommitdiff
path: root/gnu/installer/final.scm
diff options
context:
space:
mode:
authorEfraim Flashner <efraim@flashner.co.il>2022-07-11 09:44:40 +0300
committerEfraim Flashner <efraim@flashner.co.il>2022-07-11 09:44:40 +0300
commitc8c444dbd27303b330ff3d8217b5ce162232e815 (patch)
tree6c40e6e17dbfe1eea36fa9111fdc0b123ccf34c1 /gnu/installer/final.scm
parentc9fad6a2ad8c530ba5a5a78f6e9349a038e8ae88 (diff)
downloadguix-c8c444dbd27303b330ff3d8217b5ce162232e815.tar.gz
guix-c8c444dbd27303b330ff3d8217b5ce162232e815.zip
gnu: parallel: Update to 20220622.
* gnu/packages/parallel.scm (parallel): Update to 20220622. [arguments]: Add phase to add parallel to the PATH.
Diffstat (limited to 'gnu/installer/final.scm')
0 files changed, 0 insertions, 0 deletions
03-17services: nfs: Define rpcbind-shepherd-service at the top level....Attempting to use the 'nfs-service-type' as part of a computed operating-system definition, the following exception would be thrown: ice-9/boot-9.scm:1685:16: In procedure raise-exception: ERROR: 1. &ambiguous-target-service-error: service: #<<service> type: #<service-type rpcbind 7f7529853780> value: #<<rpcbind-configuration> rpcbind: #<package rpcbind@1.2.6 gnu/packages/onc-rpc.scm:87 7f75389e78f0> warm-start?: #t>> target-type: #<service-type shepherd-root 7f7529396080> 2. &message: "more than one target service of type 'shepherd-root'" The problem was that the rpcbind shepherd-service object was dynamically instantiated every time the rpcbind-service-type would be called, causing multiple objects in some situations, resulting in the above condition. * gnu/services/nfs.scm (rpcbind-service-type): Refactor and adjust in a way to extract... (rpcbind-shepherd-service): ... this new procedure. Maxim Cournoyer