gitolite/example.gitosis-lite.rc
Sitaram Chamarty 7d016908bd gl-compile-conf changed (see below) and "rc" file added
- 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
2009-08-24 15:05:47 +05:30

15 lines
470 B
Plaintext

# 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;