summaryrefslogtreecommitdiffstats
path: root/git.xinetd.in
diff options
context:
space:
mode:
authorTodd Zullinger <tmz@fedoraproject.org>2010-01-31 21:05:27 +0000
committerTodd Zullinger <tmz@fedoraproject.org>2010-01-31 21:05:27 +0000
commit68affad56786d410729dbee27c54b3a3fc409522 (patch)
tree18a90b913175fff887a533937428c34f914cdbc9 /git.xinetd.in
parent64dae55e57e4bb99220dd179267e8d92f7bb5bd1 (diff)
downloadgit-package-68affad56786d410729dbee27c54b3a3fc409522.tar.gz
git-package-68affad56786d410729dbee27c54b3a3fc409522.tar.xz
git-package-68affad56786d410729dbee27c54b3a3fc409522.zip
Update to git-1.6.6.1
- Use %{gitcoredir}/git-daemon as xinetd server option, for SELinux (#529682) - Make %{_var}/lib/git the default gitweb projectroot (#556299) - Include gitweb/INSTALL file as documentation, the gitweb README refers to it - Ship a short example gitweb config file (%{_sysconfdir}/gitweb.conf) - Remove long fixed xinetd IPv6 workaround on Fedora (#557528) - Install missing gitweb.js (#558740)
Diffstat (limited to 'git.xinetd.in')
-rw-r--r--git.xinetd.in14
1 files changed, 14 insertions, 0 deletions
diff --git a/git.xinetd.in b/git.xinetd.in
new file mode 100644
index 0000000..540e070
--- /dev/null
+++ b/git.xinetd.in
@@ -0,0 +1,14 @@
+# default: off
+# description: The git dæmon allows git repositories to be exported using \
+# the git:// protocol.
+
+service git
+{
+ disable = yes
+ socket_type = stream
+ wait = no
+ user = nobody
+ server = @GITCOREDIR@/git-daemon
+ server_args = --base-path=@BASE_PATH@ --export-all --user-path=public_git --syslog --inetd --verbose
+ log_on_failure += USERID
+}