From: "Jan (janneke) Nieuwenhuizen" <janneke@gnu.org>
To: 61483@debbugs.gnu.org
Subject: [bug#61483] [PATCH v2 5/5] DRAFT doc: Document Home Shepherd Services.
Date: Thu, 16 Feb 2023 16:53:55 +0100 [thread overview]
Message-ID: <20230216155355.11106-5-janneke@gnu.org> (raw)
In-Reply-To: <20230216155355.11106-1-janneke@gnu.org>
* doc/guix.texi (Shepherd Home Services): New subsubsection.
---
doc/guix.texi | 124 +++++++++++++++++++++++++++++++++++++++++++++++++-
1 file changed, 123 insertions(+), 1 deletion(-)
diff --git a/doc/guix.texi b/doc/guix.texi
index 784114f0bb..a5a62010b6 100644
--- a/doc/guix.texi
+++ b/doc/guix.texi
@@ -36,7 +36,7 @@ Copyright @copyright{} 2016, 2017, 2018, 2021 Chris Marusich@*
Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021, 2022 Efraim Flashner@*
Copyright @copyright{} 2016 John Darrington@*
Copyright @copyright{} 2016, 2017 Nikita Gillmann@*
-Copyright @copyright{} 2016, 2017, 2018, 2019, 2020 Jan Nieuwenhuizen@*
+Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2023 Jan Nieuwenhuizen@*
Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Julien Lepiller@*
Copyright @copyright{} 2016 Alex ter Weele@*
Copyright @copyright{} 2016, 2017, 2018, 2019, 2020, 2021 Christopher Baines@*
@@ -41285,6 +41285,128 @@ mechanism instead (@pxref{Shepherd Services}).
@end table
@end deftp
+@menu
+* Shepherd Home Services::
+@end menu
+
+@node Shepherd Home Services
+@subsubsection e Shepherd Home Services
+
+The @code{(gnu home services shepherd-xyz)} module provides serveral
+home shepherd services.
+
+@defvr {Scheme Variable} home-git-daemon-service-type
+This is the type of the @code{git daemon} home service, whose value is an
+@code{home-git-daemon-configuration} object.
+@end defvr
+
+@deftp {Data Type} home-git-daemon-configuration
+Available @code{home-git-daemon-configuration} fields are:
+
+@table @asis
+@item @code{git} (default: @code{git}) (type: file-like)
+The git package to use.
+
+@item @code{root} (default: @file{@env{XDG_DATA_HOME}/git-daemon}) (type: string)
+The git deamon's base directory.
+
+@item @code{export-all?} (default: @code{#f})
+Whether to allow access for all Git repositories, even if they do not
+have the @file{git-daemon-export-ok} file.
+
+@item @code{base-path} (default: @file{/srv/git})
+Whether to remap all the path requests as relative to the given path.
+If you run @command{git daemon} with @code{(base-path "/srv/git")} on
+@samp{example.com}, then if you later try to pull
+@indicateurl{git://example.com/hello.git}, git daemon will interpret the
+path as @file{/srv/git/hello.git}.
+
+@item @code{user-path} (default: @code{#f})
+Whether to allow @code{~user} notation to be used in requests. When
+specified with empty string, requests to
+@indicateurl{git://host/~alice/foo} is taken as a request to access
+@code{foo} repository in the home directory of user @code{alice}. If
+@code{(user-path "@var{path}")} is specified, the same request is taken
+as a request to access @file{@var{path}/foo} repository in the home
+directory of user @code{alice}.
+
+@item @code{listen} (default: @code{'()})
+Whether to listen on specific IP addresses or hostnames, defaults to
+all.
+
+@item @code{port} (default: @code{#f})
+Whether to listen on an alternative port, which defaults to 9418.
+
+@item @code{whitelist} (default: @code{'()})
+If not empty, only allow access to this list of directories.
+
+@item @code{extra-options} (default: @code{'()})
+Extra options will be passed to @command{git daemon}, please run
+@command{man git-daemon} for more information.
+
+@end table
+@end deftp
+
+@defvr {Scheme Variable} home-kodi-service-type
+This is the type of the @code{git daemon} home service, whose value is an
+@code{home-kodi-configuration} object.
+@end defvr
+
+@deftp {Data Type} home-kodi-configuration
+Available @code{home-kodi-configuration} fields are:
+
+@table @asis
+@item @code{git} (default: @code{git}) (type: file-like)
+The git package to use.
+
+@item @code{extra-options} (default: @code{'()})
+Extra options will be passed to @command{kodi}, please run @command{man
+kodi} for more information.
+
+@end table
+@end deftp
+
+@defvr {Scheme Variable} home-ssh-agent-service-type
+This is the type of the @code{git daemon} home service, whose value is an
+@code{home-ssh-agent-configuration} object.
+@end defvr
+
+@deftp {Data Type} home-ssh-agent-configuration
+Available @code{home-ssh-agent-configuration} fields are:
+
+@table @asis
+@item @code{git} (default: @code{git}) (type: file-like)
+The git package to use.
+
+@item @code{socket-dir} (default: @code{@env{XDG_RUNTIME_DIR}/ssh-agent"}) (type: string)
+The directory to write the ssh-agent's @file{socket} file.
+
+@item @code{extra-options} (default: @code{'()})
+Extra options will be passed to @command{ssh-agent}, please run
+@command{man ssh-agent} for more information.
+
+@end table
+@end deftp
+
+@defvr {Scheme Variable} home-znc-service-type
+This is the type of the @code{git daemon} home service, whose value is an
+@code{home-znc-configuration} object.
+@end defvr
+
+@deftp {Data Type} home-znc-configuration
+Available @code{home-znc-configuration} fields are:
+
+@table @asis
+@item @code{git} (default: @code{git}) (type: file-like)
+The git package to use.
+
+@item @code{extra-options} (default: @code{'()})
+Extra options will be passed to @command{znc}, please run @command{man
+znc} for more information.
+
+@end table
+@end deftp
+
@node Secure Shell
@subsection Secure Shell
--
2.38.1
next prev parent reply other threads:[~2023-02-16 15:55 UTC|newest]
Thread overview: 38+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-02-13 16:46 [bug#61483] [PATCH 0/5] Some basic Home Shepherd Services Jan (janneke) Nieuwenhuizen
2023-02-13 16:50 ` [bug#61483] [PATCH 1/5] DRAFT gnu: home: services: Add home-git-daemon-service-type Janneke Nieuwenhuizen
2023-02-13 16:50 ` [bug#61483] [PATCH 2/5] DRAFT gnu: home: services: Add home-ssh-agent-service-type Janneke Nieuwenhuizen
2023-02-13 16:50 ` [bug#61483] [PATCH 3/5] DRAFT gnu: home: services: Add home-znc-service-type Janneke Nieuwenhuizen
2023-02-13 16:50 ` [bug#61483] [PATCH 4/5] DRAFT gnu: home: services: Add home-kodi-service-type Janneke Nieuwenhuizen
2023-02-13 16:50 ` [bug#61483] [PATCH 5/5] DRAFT doc: Document Home Shepherd Services Janneke Nieuwenhuizen
2023-02-14 13:45 ` [bug#61483] [PATCH 1/5] DRAFT gnu: home: services: Add home-git-daemon-service-type Bruno Victal
2023-02-14 15:17 ` [bug#61483] [PATCH 0/5] Some basic Home Shepherd Services Jan Nieuwenhuizen
2023-02-14 15:14 ` Janneke Nieuwenhuizen
2023-02-16 15:53 ` [bug#61483] [PATCH v2 1/5] DRAFT gnu: home: services: Add home-git-daemon-service-type Jan (janneke) Nieuwenhuizen
2023-02-16 15:53 ` [bug#61483] [PATCH v2 2/5] DRAFT gnu: home: services: Add home-ssh-agent-service-type Jan (janneke) Nieuwenhuizen
2023-03-04 17:08 ` [bug#61483] [PATCH 0/5] Some basic Home Shepherd Services Ludovic Courtès
2023-02-16 15:53 ` [bug#61483] [PATCH v2 3/5] DRAFT gnu: home: services: Add home-znc-service-type Jan (janneke) Nieuwenhuizen
2023-03-04 17:06 ` [bug#61483] [PATCH 0/5] Some basic Home Shepherd Services Ludovic Courtès
2023-02-16 15:53 ` [bug#61483] [PATCH v2 4/5] DRAFT gnu: home: services: Add home-kodi-service-type Jan (janneke) Nieuwenhuizen
2023-03-04 17:10 ` [bug#61483] [PATCH 0/5] Some basic Home Shepherd Services Ludovic Courtès
2023-03-05 18:11 ` Janneke Nieuwenhuizen
2023-02-16 15:53 ` Jan (janneke) Nieuwenhuizen [this message]
2023-03-04 17:14 ` Ludovic Courtès
2023-03-05 18:09 ` Janneke Nieuwenhuizen
2023-03-04 17:05 ` Ludovic Courtès
2023-03-05 17:41 ` Janneke Nieuwenhuizen
2023-03-04 17:01 ` Ludovic Courtès
2023-03-05 18:18 ` Janneke Nieuwenhuizen
2023-03-05 18:13 ` [bug#61483] [PATCH v3 1/3] gnu: home: services: Add home-ssh-agent-service-type Janneke Nieuwenhuizen
2023-03-05 18:13 ` [bug#61483] [PATCH v3 2/3] gnu: home: services: Add home-znc-service-type Janneke Nieuwenhuizen
2023-03-16 11:01 ` [bug#61483] [PATCH 0/5] Some basic Home Shepherd Services Ludovic Courtès
2023-03-16 14:06 ` Janneke Nieuwenhuizen
2023-03-05 18:13 ` [bug#61483] [PATCH v3 3/3] gnu: home: services: Add home-kodi-service-type Janneke Nieuwenhuizen
2023-03-16 11:04 ` [bug#61483] [PATCH 0/5] Some basic Home Shepherd Services Ludovic Courtès
2023-03-16 14:07 ` Jan Nieuwenhuizen
2023-03-16 15:21 ` Jannneke Nieuwenhuizen
2023-03-16 16:16 ` Ludovic Courtès
2023-03-17 11:57 ` Janneke Nieuwenhuizen
2023-03-16 11:01 ` Ludovic Courtès
2023-03-16 14:08 ` Janneke Nieuwenhuizen
2023-03-17 11:53 ` bug#61483: " Janneke Nieuwenhuizen
2023-03-17 21:07 ` [bug#61483] " Ludovic Courtès
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://guix.gnu.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20230216155355.11106-5-janneke@gnu.org \
--to=janneke@gnu.org \
--cc=61483@debbugs.gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).