e1c7e546aa
...now that triggers are not restricted to external programs and can be perl code called by gitolite-shell (thus in the same PID), there's no need to compute and pass along the times() array. This also changes the arguments to POST_GIT; they're now the same as PRE_GIT's.
137 lines
4.5 KiB
Plaintext
137 lines
4.5 KiB
Plaintext
# configuration variables for gitolite
|
|
|
|
# This file is in perl syntax. But you do NOT need to know perl to edit it --
|
|
# just mind the commas, use single quotes unless you know what you're doing,
|
|
# and make sure the brackets and braces stay matched up!
|
|
|
|
# (Tip: perl allows a comma after the last item in a list also!)
|
|
|
|
%RC = (
|
|
# if you're using mirroring, you need a hostname. This is *one* simple
|
|
# word, not a full domain name. See documentation if in doubt
|
|
HOSTNAME => '%HOSTNAME',
|
|
UMASK => 0077,
|
|
GIT_CONFIG_KEYS => '',
|
|
|
|
# comment out if you don't need all the extra detail in the logfile
|
|
LOG_EXTRA => 1,
|
|
|
|
# settings used by external programs; uncomment and change as needed. You
|
|
# can add your own variables for use in your own external programs; take a
|
|
# look at the info and desc commands for perl and shell samples.
|
|
|
|
# used by the CpuTime trigger
|
|
# DISPLAY_CPU_TIME => 1,
|
|
# CPU_TIME_WARN_LIMIT => 0.1,
|
|
# used by the desc command
|
|
# WRITER_CAN_UPDATE_DESC => 1,
|
|
# used by the info command
|
|
# SITE_INFO => 'Please see http://blahblah/gitolite for more help',
|
|
|
|
# add more roles (like MANAGER, TESTER, ...) here.
|
|
# WARNING: if you make changes to this hash, you MUST run 'gitolite
|
|
# compile' afterward, and possibly also 'gitolite trigger POST_COMPILE'
|
|
ROLES =>
|
|
{
|
|
READERS => 1,
|
|
WRITERS => 1,
|
|
},
|
|
# uncomment (and change) this if you wish
|
|
# DEFAULT_ROLE_PERMS => 'READERS @all',
|
|
|
|
# comment out or uncomment as needed
|
|
# these are available to remote users
|
|
COMMANDS =>
|
|
{
|
|
'help' => 1,
|
|
'info' => 1,
|
|
'desc' => 1,
|
|
'perms' => 1,
|
|
'mirror' => 1,
|
|
'writable' => 1,
|
|
},
|
|
|
|
# comment out or uncomment as needed
|
|
# these will run in sequence during the conf file parse
|
|
SYNTACTIC_SUGAR =>
|
|
[
|
|
# 'continuation-lines',
|
|
],
|
|
|
|
# comment out or uncomment as needed
|
|
# these will run in sequence to modify the input (arguments and environment)
|
|
INPUT =>
|
|
[
|
|
'Mirroring::input',
|
|
],
|
|
|
|
# comment out or uncomment as needed
|
|
# these will run in sequence just after the first access check is done
|
|
ACCESS_1 =>
|
|
[
|
|
],
|
|
|
|
# comment out or uncomment as needed
|
|
# these will run in sequence just before the actual git command is invoked
|
|
PRE_GIT =>
|
|
[
|
|
# if you use this, make this the first item in the list
|
|
# 'renice 10',
|
|
|
|
'Mirroring::pre_git',
|
|
|
|
# see docs ("list of non-core programs shipped") for details
|
|
# 'partial-copy',
|
|
],
|
|
|
|
# comment out or uncomment as needed
|
|
# these will run in sequence just after the second access check is done
|
|
ACCESS_2 =>
|
|
[
|
|
],
|
|
|
|
# comment out or uncomment as needed
|
|
# these will run in sequence after the git command returns
|
|
POST_GIT =>
|
|
[
|
|
'Mirroring::post_git',
|
|
|
|
# if you use this, make this the last item in the list
|
|
# 'CpuTime::post_git',
|
|
],
|
|
|
|
# comment out or uncomment as needed
|
|
# these will run in sequence before a new wild repo is created
|
|
PRE_CREATE =>
|
|
[
|
|
],
|
|
|
|
# comment out or uncomment as needed
|
|
# these will run in sequence after a new wild repo is created
|
|
POST_CREATE =>
|
|
[
|
|
'post-compile/update-git-configs',
|
|
'post-compile/update-gitweb-access-list',
|
|
'post-compile/update-git-daemon-access-list',
|
|
],
|
|
|
|
# comment out or uncomment as needed
|
|
# these will run in sequence after post-update
|
|
POST_COMPILE =>
|
|
[
|
|
'post-compile/ssh-authkeys',
|
|
'post-compile/update-git-configs',
|
|
'post-compile/update-gitweb-access-list',
|
|
'post-compile/update-git-daemon-access-list',
|
|
],
|
|
);
|
|
|
|
# ------------------------------------------------------------------------------
|
|
# per perl rules, this should be the last line in such a file:
|
|
1;
|
|
|
|
# Local variables:
|
|
# mode: perl
|
|
# End:
|
|
# vim: set syn=perl:
|