aboutsummaryrefslogtreecommitdiff
path: root/po
diff options
context:
space:
mode:
authorMarco Baggio <marco.baggio@mdc-berlin.de>2024-04-29 15:09:53 +0200
committerRicardo Wurmus <rekado@elephly.net>2024-05-05 22:38:15 +0200
commit2c0cf38f04a2bca6e8057bf934db3d80bf246266 (patch)
tree669edd3ef3be213381cea1564840d46c02532b31 /po
parenta0971243bce66ee738be8cbca3c8e023b6ff68e0 (diff)
downloadguix-2c0cf38f04a2bca6e8057bf934db3d80bf246266.tar.gz
guix-2c0cf38f04a2bca6e8057bf934db3d80bf246266.zip
gnu: Add python-ecos.
* gnu/packages/python-science.scm (python-ecos): New variable. Co-authored-by: Ricardo Wurmus <rekado@elephly.net> Change-Id: I83d9b746f5f3563f417efc5d18911f2eb04f201c
Diffstat (limited to 'po')
0 files changed, 0 insertions, 0 deletions
52f1fefb627cb'>Revert "services: nfs: Define rpcbind-shepherd-service at the top level."...This reverts commit 0a9e82b43080275a2755624f3208287056dc9f95, which didn't end up fixing anything. The problem was elsewhere; namely, using 'operating-system-services' instead of 'operating-system-user-services'. Maxim Cournoyer 2022-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 2021-12-23services: nfs: Fix statd and mountd ports....* gnu/services/nfs.scm (nfs-shepherd-services): Fix rpcstatd-port and rpcmountd-port arguments. Mathieu Othacehe