mirror of
https://github.com/gitlabhq/gitlab-recipes.git
synced 2026-01-10 06:58:06 -05:00
25 lines
640 B
Desktop File
25 lines
640 B
Desktop File
#####################################################
|
|
#
|
|
# GitLab version : 9.x
|
|
# Contributors : axil
|
|
# Downloaded from : https://gitlab.com/gitlab-org/gitlab-recipes/tree/master/init/systemd
|
|
#
|
|
####################################################
|
|
|
|
[Unit]
|
|
Description=Gitaly is a Git RPC service for handling all the git calls made by GitLab.
|
|
Requires=gitlab-unicorn.service
|
|
Wants=gitlab-unicorn.service
|
|
After=gitlab-unicorn.service
|
|
|
|
[Service]
|
|
Type=simple
|
|
User=git
|
|
WorkingDirectory=/home/git/gitaly
|
|
SyslogIdentifier=gitlab-gitaly
|
|
|
|
ExecStart=/home/git/gitaly/gitaly /home/git/gitaly/config.toml
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|