[bug#62463] services: fstrim: Fix schedule ungexp.
Commit Message
Previously, only the first level of the list would be quoted,
resulting in a schedule of the sort:
'(next-second (range 0 60 30))
being incorrectly ungexp'd into:
(list next-second (0 30))
* gnu/services/linux.scm (fstrim-mcron-job): Fix schedule ungexp.
---
gnu/services/linux.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
@@ -234,7 +234,7 @@ (define (fstrim-mcron-job config)
;; lists are ungexp'd correctly since @var{schedule}
;; can be either a procedure, a string or a list.
#$(if (list? schedule)
- `(list ,@schedule)
+ #~'(#$@schedule)
schedule)
(lambda ()
(system* #$(file-append package "/sbin/fstrim")