guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

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


From: guix-commits
Subject: 06/08: services: gitolite: Use the correct variable for the user-group.
Date: Thu, 17 Nov 2022 07:04:23 -0500 (EST)

cbaines pushed a commit to branch master
in repository guix.

commit 35ef5fca0ac997680e47942e25f403fb3ec54c7d
Author: EuAndreh <eu@euandre.org>
AuthorDate: Sat Nov 12 15:53:21 2022 -0300

    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>
---
 gnu/services/version-control.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]