summaryrefslogtreecommitdiffstats
path: root/server/setup/05-service-settings/etc/xinetd.d/git
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2013-06-06 09:36:17 +0200
committerSven Gothel <[email protected]>2013-06-06 09:36:17 +0200
commit2043717a38ce78f238ea147cb2876b814ba60991 (patch)
treeb7c9cf03b7b7b4e2ac012783e0ccc7dcdfd6920e /server/setup/05-service-settings/etc/xinetd.d/git
parent9f86ccf1104b19d4985a287a1a83140060abdba7 (diff)
server config part-2: git and apache, fixed DB import bug for bugzilla and wiki .. TODO: Chuck (Jenkins)
Diffstat (limited to 'server/setup/05-service-settings/etc/xinetd.d/git')
-rw-r--r--server/setup/05-service-settings/etc/xinetd.d/git15
1 files changed, 15 insertions, 0 deletions
diff --git a/server/setup/05-service-settings/etc/xinetd.d/git b/server/setup/05-service-settings/etc/xinetd.d/git
new file mode 100644
index 0000000..fed3461
--- /dev/null
+++ b/server/setup/05-service-settings/etc/xinetd.d/git
@@ -0,0 +1,15 @@
+# default: off
+# description: The rsync server is a good addition to an ftp server, as it \
+# allows crc checksumming etc.
+service git
+{
+ disable = no
+ socket_type = stream
+ port = 9418
+ wait = no
+ user = nobody
+ server = /usr/bin/git
+ server_args = daemon --inetd --syslog --verbose --export-all /srv/scm
+ log_on_failure += USERID
+}
+