diff options
author | Nicolas Vigier <boklm@mars-attacks.org> | 2013-07-15 01:51:01 +0200 |
---|---|---|
committer | Nicolas Vigier <boklm@mars-attacks.org> | 2013-07-15 01:51:01 +0200 |
commit | 5aeecc2010c6c41c6fc141d7329c25816da548ac (patch) | |
tree | 0b7948f9caada6fea5de4c2ba1d05838d8d6e636 | |
parent | be3231831481aa3f518dc7c57c11f039811d6b18 (diff) | |
download | mgagit-5aeecc2010c6c41c6fc141d7329c25816da548ac.tar mgagit-5aeecc2010c6c41c6fc141d7329c25816da548ac.tar.gz mgagit-5aeecc2010c6c41c6fc141d7329c25816da548ac.tar.bz2 mgagit-5aeecc2010c6c41c6fc141d7329c25816da548ac.tar.xz mgagit-5aeecc2010c6c41c6fc141d7329c25816da548ac.zip |
Call load_users in glconf
Load users from ldap even in glconf, as some infos from users can be
used in gitolite configuration.
-rwxr-xr-x | mgagit | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -55,6 +55,7 @@ sub glconf { my %r; MGA::Git::load_gitrepos(\%r); MGA::Git::load_groups(\%r) if @_ == 1; + MGA::Git::load_users(\%r); if (my $repo = $_[1]) { if (!$r{repos}{$repo}) { print STDERR "Cannot find repository $repo\n"; |