- factored out all the pathnames etc to an rc - taught it to create repos that dont exist but are mentioned - promoted user up one level (moving ref down) because gl-auth needs it - REPO_BASE no longer contains $HOME so that has to be added in manually - little bugs here and there, like in @refs
14 lines
470 B
Text
14 lines
470 B
Text
# this is meant to be pulled into a perl program using "do"
|
|
|
|
# gitosis-lite admin directory, files, etc
|
|
$GL_ADMINDIR=$ENV{HOME} . "/.gitosis-lite";
|
|
$GL_CONF="$GL_ADMINDIR/gitosis-lite.conf";
|
|
$GL_KEYDIR="$GL_ADMINDIR/keydir";
|
|
# this one has to agree with the other programs, watch out:
|
|
$GL_CONF_COMPILED=$ENV{HOME} . "/.ssh/gitosis-lite.conf-compiled.pm";
|
|
|
|
# base directory for all the repos
|
|
$REPO_BASE="repositories";
|
|
|
|
# this should be the last line in this file
|
|
1;
|