Re: trouble defining a shepherd service

2024-12-02 Thread Yulran
Hi, I hope you found the solution in the meantime, but in case it helps, there's also an issue in your service-extension that will indeed cause 'Wrong type to apply' or 'Wrong type argument' errors when you try to build your system. The second argument of service-extension should be a function

Re: trouble defining a shepherd service

2024-10-21 Thread indieterminacy
Hey, A passing guess is that this line is incorrect: #:directory „/var/openslides" Try redefining it to this incase: #:directory "/var/openslides" HTH On 2024-10-20 23:56, post@bonni.codes wrote: Hello, I am trying to define a shepherd service to add to my system configuration. Reading t

trouble defining a shepherd service

2024-10-20 Thread post@bonni.codes
Hello, I am trying to define a shepherd service to add to my system configuration. Reading the docs this is what I came up with: (define openslides-shepherd-service (shepherd-service (documentation "Runs the openslides docker-compose.") (provision '(openslides)) (requirement '(dockerd)