2009-08-30 08:41:55 +02:00
|
|
|
# default paths for gitolite
|
|
|
|
|
|
|
|
# please read comments before editing
|
|
|
|
|
|
|
|
# this file is meant to be pulled into a perl program using "do" or "require".
|
|
|
|
|
|
|
|
# You do NOT need to know perl to edit the paths; it should be fairly
|
|
|
|
# self-explanatory
|
|
|
|
|
|
|
|
# --------------------------------------
|
|
|
|
|
|
|
|
# this is where the repos go. If you provide a relative path (not starting
|
|
|
|
# with "/"), it's relative to your $HOME. You may want to put in something
|
|
|
|
# like "/bigdisk" or whatever if your $HOME is too small for the repos, for
|
|
|
|
# example
|
2009-08-23 11:25:50 +02:00
|
|
|
|
2009-08-24 06:37:06 +02:00
|
|
|
$REPO_BASE="repositories";
|
|
|
|
|
2009-08-30 08:41:55 +02:00
|
|
|
# --------------------------------------
|
|
|
|
|
|
|
|
# I see no reason anyone may want to change the gitolite admin directory, but
|
|
|
|
# feel free to do so
|
|
|
|
|
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
|
|
|
|
|
|
|
# --------------------------------------
|
|
|
|
|
2009-08-30 08:41:55 +02:00
|
|
|
# I see even less reason to change these, since they're all relative to the
|
|
|
|
# gitolite admin directory above, but hey it's *your* system...
|
2009-08-24 06:37:06 +02:00
|
|
|
|
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
|
|
|
# --------------------------------------
|
2009-08-30 08:41:55 +02:00
|
|
|
# per perl rules, this should be the last line in such a file:
|
2009-08-23 11:25:50 +02:00
|
|
|
1;
|