diff options
author | Malfurious <m@lfurio.us> | 2023-09-14 14:34:48 -0400 |
---|---|---|
committer | Malfurious <m@lfurio.us> | 2023-09-15 10:53:24 -0400 |
commit | a9c483cad66446d3569f0666c55bed6263f75162 (patch) | |
tree | 53cb8111ba4f6ec38cee805e98c1d2769f733403 | |
parent | 9543016ffb3a507829d980f0abc37725a211540b (diff) | |
download | srcnode-a9c483cad66446d3569f0666c55bed6263f75162.tar.gz srcnode-a9c483cad66446d3569f0666c55bed6263f75162.zip |
gitolite: Remove hard-coded admin username
The default gitolite.conf file is now patched in to the gitolite
installation in the docker image. This is so that the intended version
of the file is used in the gitolite-admin repo from the very beginning.
This is made necessary by the decoupling of repo purposes.
Instead of using (literal) 'admin', '%ADMIN' will be substituted with
the actual admin username during `gitolite setup`.
Signed-off-by: Malfurious <m@lfurio.us>
-rw-r--r-- | gitolite/gitolite.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gitolite/gitolite.conf b/gitolite/gitolite.conf index a1602d0..89eb558 100644 --- a/gitolite/gitolite.conf +++ b/gitolite/gitolite.conf @@ -1,4 +1,4 @@ -@administrators = admin +@administrators = %ADMIN repo gitolite-admin RW+ = @administrators |