From 7fe4645cb7d5e3f0d12d848cb332cae9362c78b6 Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Sat, 25 Oct 2025 10:43:01 +0100 Subject: [PATCH] services: nar-herder: Fix the control options. * gnu/services/guix.scm (nar-herder-shepherd-services): Fix the control server options. Change-Id: Iae17300f7ae6dffb0905936389b49032e763c401 --- gnu/services/guix.scm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/gnu/services/guix.scm b/gnu/services/guix.scm index 25f65d31673..5b811491f66 100644 --- a/gnu/services/guix.scm +++ b/gnu/services/guix.scm @@ -984,8 +984,10 @@ ca-certificates.crt file in the system profile." "--pid-file=/var/run/nar-herder/pid" #$(string-append "--port=" (number->string port)) #$(string-append "--host=" host) - #$(string-append "--control-port=" (number->string port)) - #$(string-append "--control-host=" host) + #$(string-append "--control-port=" + (number->string control-port)) + #$(string-append "--control-host=" + control-host) #$@(if mirror (list (string-append "--mirror=" mirror)) '())