2009-08-23 11:25:50 +02:00
|
|
|
# this is meant to be pulled into a perl program using "do"
|
|
|
|
|
2009-08-29 08:06:26 +02:00
|
|
|
# base directory for all the repos (absolute, or relative to $HOME)
|
2009-08-24 06:37:06 +02:00
|
|
|
$REPO_BASE="repositories";
|
|
|
|
|
2009-08-26 02:47:27 +02:00
|
|
|
# gitolite admin directory, files, etc
|
|
|
|
$GL_ADMINDIR=$ENV{HOME} . "/.gitolite";
|
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-27 11:54:08 +02:00
|
|
|
$GL_CONF="$GL_ADMINDIR/conf/gitolite.conf";
|
2009-08-23 11:25:50 +02:00
|
|
|
$GL_KEYDIR="$GL_ADMINDIR/keydir";
|
2009-08-27 11:54:08 +02:00
|
|
|
$GL_CONF_COMPILED="$GL_ADMINDIR/conf/gitolite.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;
|