28 lines
887 B
Desktop File
28 lines
887 B
Desktop File
#####################################################
|
|
#
|
|
# GitLab version : 5.x - 7.x
|
|
# Contributors : davispuh, mtorromeo, axilleas, boeserwolf91, Stefan Tatschner (rumpelsepp)
|
|
# Downloaded from : https://gitlab.com/gitlab-org/gitlab-recipes/tree/master/init/systemd
|
|
#
|
|
####################################################
|
|
|
|
[Unit]
|
|
Description=GitLab Unicorn Server
|
|
PartOf=gitlab.target
|
|
Requires=redis.service
|
|
Wants=postgresql.service
|
|
After=redis.service postgresql.service
|
|
|
|
[Service]
|
|
User=gitlab
|
|
WorkingDirectory=/usr/share/gitlab
|
|
EnvironmentFile=/etc/gitlab/gitlab-debian.conf
|
|
SyslogIdentifier=gitlab-unicorn
|
|
|
|
ExecStartPre=/usr/bin/install -o gitlab -g gitlab -m 2750 -d /var/run/gitlab/pids
|
|
ExecStartPre=/usr/bin/install -o gitlab -g gitlab -m 2750 -d /var/run/gitlab/sockets
|
|
ExecStart=/bin/sh bin/web start
|
|
ExecStop=/bin/sh bin/web stop
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|