From a0818d0236056dae043f9d1997b0c45ee40bbe26 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Thu, 5 Oct 2023 22:31:46 +0200 Subject: services: mcron: Hide ‘mkdir-p’ from (shepherd support). MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This a avoids a Guile warning about the name collision with (guix build utils). The warning was introduced by commit e0e85f2b2396c69d078caad9bd8e1a0fddf33a4a. * gnu/services/mcron.scm (mcron-shepherd-services): Hide ‘mkdir-p’. --- gnu/services/mcron.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gnu') diff --git a/gnu/services/mcron.scm b/gnu/services/mcron.scm index 088de8c83b..e907d364da 100644 --- a/gnu/services/mcron.scm +++ b/gnu/services/mcron.scm @@ -165,7 +165,7 @@ (define (mcron-shepherd-services config) (ice-9 popen) ;for the 'schedule' action (ice-9 rdelim) (ice-9 match) - (shepherd support) ;for '%user-log-dir' + ((shepherd support) #:hide (mkdir-p)) ;for '%user-log-dir' ,@%default-modules)) (start #~(make-forkexec-constructor (list #$(file-append mcron "/bin/mcron") -- cgit v1.2.3