aboutsummaryrefslogtreecommitdiff
path: root/doc/images
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2020-11-03 20:43:02 +0100
committerLudovic Courtès <ludo@gnu.org>2020-11-03 23:47:14 +0100
commit99efa804bd6df5de4760ec5974ed2297f1746366 (patch)
tree38ce3eca33ef107a31de718b965b18d4abdc9052 /doc/images
parentfccc01275dff5be0f9e5efc7cb87e21f6663fb55 (diff)
downloadguix-99efa804bd6df5de4760ec5974ed2297f1746366.tar.gz
guix-99efa804bd6df5de4760ec5974ed2297f1746366.zip
image: Allow offloading of "partition.img" and "image.iso" builds.
This builds are extremely I/O-intensive so they'd rather not run on the head node of the build farm. * gnu/system/image.scm (system-disk-image, system-iso9660-image): Pass #:local-build? #f.
Diffstat (limited to 'doc/images')
0 files changed, 0 insertions, 0 deletions
ystem-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