mirror of
https://github.com/jlengrand/gitlab-recipes.git
synced 2026-03-10 08:11:17 +00:00
28 lines
731 B
Desktop File
28 lines
731 B
Desktop File
#####################################################
|
|
#
|
|
# GitLab version : 5.x - 6.x
|
|
# Contributors : davispuh, mtorromeo, axilleas
|
|
# Downloaded from : https://github.com/gitlabhq/gitlab-recipes/tree/master/init/systemd
|
|
#
|
|
####################################################
|
|
|
|
[Unit]
|
|
Description=GitLab Sidekiq Worker
|
|
Requires=redis.service
|
|
After=syslog.target network.target redis.service
|
|
Wants=mysqld.service
|
|
|
|
[Service]
|
|
Type=forking
|
|
User=git
|
|
WorkingDirectory=/home/git/gitlab
|
|
Environment=RAILS_ENV=production
|
|
SyslogIdentifier=gitlab-sidekiq
|
|
PIDFile=/home/git/gitlab/tmp/pids/sidekiq.pid
|
|
|
|
ExecStart=/usr/bin/bundle exec rake sidekiq:start
|
|
ExecStop=/usr/bin/bundle exec rake sidekiq:stop
|
|
|
|
[Install]
|
|
WantedBy=gitlab.target
|