aboutsummaryrefslogtreecommitdiff
path: root/gnu/services/version-control.scm
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2022-11-12 15:53:21 -0300
committerChristopher Baines <mail@cbaines.net>2022-11-17 12:00:32 +0000
commit35ef5fca0ac997680e47942e25f403fb3ec54c7d (patch)
treec28f4ab85c070d5337a4ce5c29c3ae139cbced36 /gnu/services/version-control.scm
parentf91f9006c48bea14e1bb7f45c1ab036e9490c089 (diff)
downloadguix-35ef5fca0ac997680e47942e25f403fb3ec54c7d.tar.gz
guix-35ef5fca0ac997680e47942e25f403fb3ec54c7d.zip
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>
Diffstat (limited to 'gnu/services/version-control.scm')
-rw-r--r--gnu/services/version-control.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/services/version-control.scm b/gnu/services/version-control.scm
index b6b78e504e..86d40bdbe3 100644
--- a/gnu/services/version-control.scm
+++ b/gnu/services/version-control.scm
@@ -313,7 +313,7 @@ access to exported repositories under @file{/srv/git}."
(($ <gitolite-configuration> package user group home-directory
rc-file admin-pubkey)
;; User group and account to run Gitolite.
- (list (user-group (name user) (system? #t))
+ (list (user-group (name group) (system? #t))
(user-account
(name user)
(group group)