git.xinetd 522 B

12345678910111213141516
  1. # default: off
  2. # description: The git daemon allows git repositories to be exported using
  3. # the git:// protocol.
  4. service git
  5. {
  6. disable = yes
  7. socket_type = stream
  8. wait = no
  9. user = nobody
  10. server = /usr/libexec/git-core/git-daemon
  11. server_args = --base-path=/srv/git --export-all --user-path=public_git --syslog --inetd --verbose
  12. log_on_failure += USERID
  13. # xinetd doesn't do this by default. bug #195265
  14. flags = IPv6
  15. }