blob: b25e1e7fa99d5a0a95f61bbf9a9b4b8b308e5c8c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Defaults for the git-daemon initscript
# Set to yes to start git-daemon
RUN=yes
# Set to the user and group git-daemon should run as
USER=nobody
GROUP=nogroup
# Set the base path and the directory where the repositories are.
REPOSITORIES="/srv/git"
# Provide a way to have custom setup.
#
# Note, when ADVANCED_OPTS is defined the REPOSITORIES setting is ignored,
# so take good care to specify exactly what git-daemon have to do.
#
# Here is an example from the man page:
#ADVANCED_OPTS="--verbose --export-all \
# --interpolated-path=/pub/%IP/%D \
# /pub/192.168.1.200/software \
# /pub/10.10.220.23/software"
|