2009-08-23 11:25:50 +02:00
|
|
|
# this is meant to be pulled into a perl program using "do"
|
|
|
|
|
2009-08-24 06:37:06 +02:00
|
|
|
# base directory for all the repos
|
|
|
|
$REPO_BASE="repositories";
|
|
|
|
|
2009-08-23 11:25:50 +02:00
|
|
|
# gitosis-lite admin directory, files, etc
|
|
|
|
$GL_ADMINDIR=$ENV{HOME} . "/.gitosis-lite";
|
2009-08-24 06:37:06 +02:00
|
|
|
|
|
|
|
# --------------------------------------
|
|
|
|
|
|
|
|
# the ones below can be left as they are, unless for some reason you want them
|
|
|
|
# elsewhere
|
|
|
|
|
2009-08-23 11:25:50 +02:00
|
|
|
$GL_CONF="$GL_ADMINDIR/gitosis-lite.conf";
|
|
|
|
$GL_KEYDIR="$GL_ADMINDIR/keydir";
|
2009-08-24 06:37:06 +02:00
|
|
|
$GL_CONF_COMPILED="$GL_ADMINDIR/gitosis-lite.conf-compiled.pm";
|
2009-08-23 11:25:50 +02:00
|
|
|
|
2009-08-24 06:37:06 +02:00
|
|
|
# --------------------------------------
|
|
|
|
# this should be the last line in this file, per perl rules
|
2009-08-23 11:25:50 +02:00
|
|
|
1;
|