Git 데몬이 지정된 기본 경로를 사용하지 않습니다.

Git 데몬이 지정된 기본 경로를 사용하지 않습니다.

나는 다음과 같은 구성을 가지고 있습니다/etc/xinetd.d/git

# description: The git server offers access to git repositories
service git
{
        disable = no
        type            = UNLISTED
        port            = 9418
        socket_type     = stream
        wait            = no
        user            = nobody
        server          = /usr/bin/git
        server_args     = daemon --inetd --export-all --base-path=/home/git
        log_on_failure  += USERID
}

저장소를 복제하려고 하면 git clone git://10.1.1.10/cabinet_labels.git로그에 잘못된 기본 경로를 참조하는 것으로 표시됩니다.

2016-05-12_18:25:17.21483 git-daemon starting.
2016-05-12_18:25:17.33264 [403] Ready to rumble
2016-05-12_18:26:33.45470 [976] Connection from 10.1.1.8:56960
2016-05-12_18:26:33.45485 [976] Extended attributes (16 bytes) exist <host=10.1.1.10>
2016-05-12_18:26:33.45514 [976] Request upload-pack for '/cabinet_labels.git'
2016-05-12_18:26:33.45525 [976] '/var/lib/cabinet_labels.git' does not appear to be a git repository
2016-05-12_18:26:33.45618 [403] [976] Disconnected (with error)

누군가 내가 여기서 무엇을 놓치고 있는지 말해 줄 수 있습니까?

답변1

편집할 올바른 구성 파일은 입니다. 로 /etc/sv/git-daemon/run변경하고 및--base-path=/var/lib--base-path=/home/git/var/lib/git/home/git

#!/bin/sh
exec 2>&1
echo 'git-daemon starting.'
exec chpst -ugitdaemon \
  "$(git --exec-path)"/git-daemon --verbose --reuseaddr \
  --export-all --base-path=/home/git /home/git

관련 정보