git-daemon.initd 365 B

1234567891011121314
  1. #!/usr/bin/openrc-run
  2. # Copyright 1999-2016 Gentoo Foundation
  3. # Distributed under the terms of the GNU General Public License v2
  4. pidfile="/run/git-daemon.pid"
  5. command="/usr/bin/git"
  6. command_args="daemon ${GITDAEMON_OPTS}"
  7. command_user="${GIT_USER:-nobody}:${GIT_GROUP:-nobody}"
  8. start_stop_daemon_args="-e HOME= -e XDG_CONFIG_HOME= -b -m"
  9. depend() {
  10. use logger
  11. }