##################################################### # # 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 Sidekiq Worker PartOf=gitlab.target Requires=redis.service Wants=postgresql.service After=redis.service postgresql.service [Service] Type=forking User=gitlab WorkingDirectory=/usr/share/gitlab EnvironmentFile=/etc/gitlab/gitlab-debian.conf SyslogIdentifier=gitlab-sidekiq PIDFile=/usr/share/gitlab/tmp/pids/sidekiq.pid ExecStart=/usr/bin/bundle exec "sidekiq -d -q archive_repo -q post_receive -q mailers -q system_hook -q incoming_email -q project_web_hook -q gitlab_shell -q common -q default -e production -P tmp/pids/sidekiq.pid -d -L log/sidekiq.log >> log/sidekiq.log 2>&1" ExecStop=/usr/bin/bundle exec "sidekiqctl stop /home/git/gitlab/tmp/pids/sidekiq.pid >> /home/git/gitlab/log/sidekiq.log 2>&1" [Install] WantedBy=multi-user.target