summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorArun Isaac <arunisaac@systemreboot.net>2026-05-20 20:29:36 +0100
committerArun Isaac <arunisaac@systemreboot.net>2026-05-29 09:48:26 +0100
commitb8354c29794d36ddc87f467f79ee4583f9f36107 (patch)
tree67e6e01bec3c7a8956a12c374a6e9a9297bcc0ed /doc
parent33036b2908f598ff1f106c1b5ee4ca9e6c16eb2d (diff)
services: mumi: Make rsync and index timer event configurable.
* gnu/services/web.scm (<mumi-configuration>)[rsync-and-index-event]: New field. * gnu/services/web.scm (mumi-shepherd-services): Use it. * doc/guix.texi (Web Services)[Mumi]: Document it. Change-Id: I5910c4a93106b44eaf3900d6a72fb501c01b8773
Diffstat (limited to 'doc')
-rw-r--r--doc/guix.texi11
1 files changed, 7 insertions, 4 deletions
diff --git a/doc/guix.texi b/doc/guix.texi
index bb415f2cc59..209becd722a 100644
--- a/doc/guix.texi
+++ b/doc/guix.texi
@@ -53,7 +53,7 @@ Copyright @copyright{} 2017, 2019--2026 Maxim Cournoyer@*
53Copyright @copyright{} 2017–2022 Tobias Geerinckx-Rice@* 53Copyright @copyright{} 2017–2022 Tobias Geerinckx-Rice@*
54Copyright @copyright{} 2017 George Clemmer@* 54Copyright @copyright{} 2017 George Clemmer@*
55Copyright @copyright{} 2017 Andy Wingo@* 55Copyright @copyright{} 2017 Andy Wingo@*
56Copyright @copyright{} 2017, 2018, 2019, 2020, 2023, 2024, 2025 Arun Isaac@* 56Copyright @copyright{} 2017, 2018, 2019, 2020, 2023, 2024, 2025, 2026 Arun Isaac@*
57Copyright @copyright{} 2017 nee@* 57Copyright @copyright{} 2017 nee@*
58Copyright @copyright{} 2018 Rutger Helling@* 58Copyright @copyright{} 2018 Rutger Helling@*
59Copyright @copyright{} 2018, 2021, 2023, 2025, 2026 Oleg Pykhalov@* 59Copyright @copyright{} 2018, 2021, 2023, 2025, 2026 Oleg Pykhalov@*
@@ -36741,13 +36741,16 @@ The Mumi package to use.
36741Data directory to store Debbugs data from upstream Debbugs instance. 36741Data directory to store Debbugs data from upstream Debbugs instance.
36742 36742
36743@item @code{rsync-remote} 36743@item @code{rsync-remote}
36744Remote rsync path from which to download Debbugs data. The remote is 36744Remote rsync path from which to download Debbugs data.
36745polled every 5 minutes, unless a previous instance of rsync is already
36746running.
36747 36745
36748@item @code{rsync-flags} (default: @code{'()}) 36746@item @code{rsync-flags} (default: @code{'()})
36749Additional flags to pass to @command{rsync}. 36747Additional flags to pass to @command{rsync}.
36750 36748
36749@item @code{rsync-and-index-event} (default: @code{#~(calendar-event #:minutes '#$(iota 12 0 5))})
36750Shepherd calendar event to run the rsync and indexing timer at. By
36751default, this is once every 5 minutes. The timer job is not run if an
36752earlier instance of it is still running.
36753
36751@item @code{mailer?} (default: @code{#true}) 36754@item @code{mailer?} (default: @code{#true})
36752Whether to enable or disable the mailer component. 36755Whether to enable or disable the mailer component.
36753 36756