services: gitolite: Use the correct variable for the user-group.

The default value for <gitolite-configuration> has "git" for both the values
of the user and the group, as costumary, which means that unless someone uses
a custom configuration and chooses different strings for user and group, this
wouldn't show up.

* gnu/services/version-control.scm (gitolite-accounts): Use the correct
variable for the name of a (user-group ...).

Signed-off-by: Christopher Baines <mail@cbaines.net>
This commit is contained in:
EuAndreh 2022-11-12 15:53:21 -03:00 committed by Christopher Baines
parent f91f9006c4
commit 35ef5fca0a
No known key found for this signature in database
GPG key ID: 5E28A33B0B84F577

View file

@ -313,7 +313,7 @@ (define gitolite-accounts
(($ <gitolite-configuration> package user group home-directory (($ <gitolite-configuration> package user group home-directory
rc-file admin-pubkey) rc-file admin-pubkey)
;; User group and account to run Gitolite. ;; User group and account to run Gitolite.
(list (user-group (name user) (system? #t)) (list (user-group (name group) (system? #t))
(user-account (user-account
(name user) (name user)
(group group) (group group)