summaryrefslogtreecommitdiff
path: root/gitlab-server/usr/share/gitlab-install/systemd-units/gitlab-sidekiq.service
diff options
context:
space:
mode:
authorSam Thursfield <sam.thursfield@codethink.co.uk>2015-03-16 16:07:27 +0000
committerSam Thursfield <sam.thursfield@codethink.co.uk>2015-03-16 16:07:27 +0000
commit24673741fb1ad30c273e89c25d366e0136dfaa5b (patch)
tree0a30c7c393508b1d1d9f60defb1e3021d0b6dcd7 /gitlab-server/usr/share/gitlab-install/systemd-units/gitlab-sidekiq.service
parent3615cc776d0a926fc45ce280cfc6ee679d01366e (diff)
downloaddefinitions-24673741fb1ad30c273e89c25d366e0136dfaa5b.tar.gz
Remove Gitlab systems
As far as I know, these are out of date, unmaintained and nobody is using them. It was definitely a useful learning process to integrate Gitlab into Baserock, but I think this is now just taking up space in definitions.git needlessly. Change-Id: Ifdd9c0a3dd889382bc5e6825c2df4f3afbd89f3c
Diffstat (limited to 'gitlab-server/usr/share/gitlab-install/systemd-units/gitlab-sidekiq.service')
-rw-r--r--gitlab-server/usr/share/gitlab-install/systemd-units/gitlab-sidekiq.service24
1 files changed, 0 insertions, 24 deletions
diff --git a/gitlab-server/usr/share/gitlab-install/systemd-units/gitlab-sidekiq.service b/gitlab-server/usr/share/gitlab-install/systemd-units/gitlab-sidekiq.service
deleted file mode 100644
index 82ff78d4..00000000
--- a/gitlab-server/usr/share/gitlab-install/systemd-units/gitlab-sidekiq.service
+++ /dev/null
@@ -1,24 +0,0 @@
-#####################################################
-#
-# GitLab version : 5.x - 6.x
-# Contributors : davispuh, mtorromeo, axilleas, boeserwolf91
-# Downloaded from : https://github.com/gitlabhq/gitlab-recipes/tree/master/init/systemd
-#
-####################################################
-
-[Unit]
-Description=GitLab Sidekiq Worker
-
-[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 "sidekiq -q post_receive,mailer,system_hook,project_web_hook,gitlab_shell,common,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=gitlab.target