Browse Source
doc: Tweak mcron example.
* doc/guix.texi (Scheduled Job Execution): In example, move '%min-level'
definition after 'use-modules'.
gn-latest-20200725
Ludovic Courtès
7 months ago
No known key found for this signature in database
GPG Key ID: 90B11993D9AEBB5
1 changed files with
3 additions and
1 deletions
-
doc/guix.texi
|
|
@@ -13843,12 +13843,14 @@ illustrates that. |
|
|
|
(with-imported-modules (source-module-closure |
|
|
|
'((guix build utils))) |
|
|
|
#~(begin |
|
|
|
(define %min-level 20) |
|
|
|
(use-modules (guix build utils) |
|
|
|
(ice-9 popen) |
|
|
|
(ice-9 regex) |
|
|
|
(ice-9 textual-ports) |
|
|
|
(srfi srfi-2)) |
|
|
|
|
|
|
|
(define %min-level 20) |
|
|
|
|
|
|
|
(setenv "LC_ALL" "C") ;ensure English output |
|
|
|
(and-let* ((input-pipe (open-pipe* |
|
|
|
OPEN_READ |
|
|
|