diff options
| author | Nguyễn Gia Phong <cnx@loang.net> | 2026-03-13 14:55:47 +0900 |
|---|---|---|
| committer | Nguyễn Gia Phong <cnx@loang.net> | 2026-04-02 21:57:30 +0900 |
| commit | 7f0256fb27aa8ff0a6484738e5625c448957091f (patch) | |
| tree | 8176dee9fa743acfeca6a101872c76b812320e24 /doc | |
| parent | 091d0705078c535705e02e12cbd574828ac2dac7 (diff) | |
doc: Version Control Services: Fix Fossil example.
In the Fossil service example, correct the field name
for list-repositories? and set https? to #t.
* doc/guix.texi (Version Control Services):
Fix the example for fossil-service-type.
Change-Id: Ib1c1ba57d8f438a51e8bb7b6e97c57785685e110
Reviewed-by: Noé Lopez <noelopez@free.fr>
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/guix.texi | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/guix.texi b/doc/guix.texi index c2761abb171..d487a15084e 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -44244,10 +44244,11 @@ behind a reverse proxy and serve repositories from a custom location. (service fossil-service-type (fossil-configuration (repository "/srv/museum") - (repo-list? #t) + (list-repositories? #t) (base-url "https://museum.example") - (socket-file "/var/run/fossil.sock") - (compress? #f))) + (compress? #f) + (https? #t) + (socket-file "/var/run/fossil.sock"))) @end lisp @deftp {Data Type} fossil-configuration |
