This is an automated email from the git hooks/post-receive script. civodul pushed a commit to branch main in repository shepherd.
The following commit(s) were added to refs/heads/main by this push: new 136b3d9 doc: Add missing quote in ‘updatedb’ example. 136b3d9 is described below commit 136b3d9a11e9dd1dad0599f0798c519edaa61e2b Author: Ludovic Courtès <l...@gnu.org> AuthorDate: Sat Dec 14 16:11:08 2024 +0100 doc: Add missing quote in ‘updatedb’ example. * doc/shepherd.texi (Service Examples): Add missing quote. --- doc/shepherd.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/shepherd.texi b/doc/shepherd.texi index d092608..5b3ecd4 100644 --- a/doc/shepherd.texi +++ b/doc/shepherd.texi @@ -1809,7 +1809,7 @@ command as root (@pxref{Invoking updatedb,,, find, Finding Files}): '(updatedb) #:start (make-timer-constructor ;; Fire at midnight and noon everyday. - (calendar-event #:hours '(0 12) #:minutes (0)) + (calendar-event #:hours '(0 12) #:minutes '(0)) (command '("/usr/bin/updatedb" "--prunepaths=/tmp"))) #:stop (make-timer-destructor)