diff --git a/debian/conf/gitlab-mailroom.service b/debian/conf/gitlab-mailroom.service deleted file mode 100644 index ca3ec27685..0000000000 --- a/debian/conf/gitlab-mailroom.service +++ /dev/null @@ -1,29 +0,0 @@ -##################################################### -# -# GitLab version : 8.x - 8.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 mailroom Worker -PartOf=gitlab.target -Requires=gitlab-unicorn.service -Wants=gitlab-unicorn.service -After=gitlab-unicorn.service - -[Service] -User=gitlab -WorkingDirectory=/usr/share/gitlab -EnvironmentFile=/etc/gitlab/gitlab-debian.conf -SyslogIdentifier=gitlab-mailroom -PIDFile=/run/gitlab/mail_room.pid -Type=oneshot -RemainAfterExit=yes - -ExecStart=/usr/share/gitlab/bin/mail_room start -ExecStop=/usr/share/gitlab/bin/mail_room stop - -[Install] -WantedBy=multi-user.target diff --git a/debian/conf/gitlab-sidekiq.service b/debian/conf/gitlab-sidekiq.service deleted file mode 100644 index 9b093f1ac4..0000000000 --- a/debian/conf/gitlab-sidekiq.service +++ /dev/null @@ -1,28 +0,0 @@ -##################################################### -# -# 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-server.service -Wants=postgresql.service -After=redis-server.service postgresql.service - -[Service] -Type=forking -User=gitlab -WorkingDirectory=/usr/share/gitlab -EnvironmentFile=/etc/gitlab/gitlab-debian.conf -SyslogIdentifier=gitlab-sidekiq -PIDFile=/run/gitlab/sidekiq.pid - -ExecStart=/bin/sh bin/background_jobs start -ExecStop=/bin/sh bin/background_jobs stop - -[Install] -WantedBy=multi-user.target diff --git a/debian/conf/gitlab-unicorn.service b/debian/conf/gitlab-unicorn.service deleted file mode 100644 index 64bcf8f7bc..0000000000 --- a/debian/conf/gitlab-unicorn.service +++ /dev/null @@ -1,27 +0,0 @@ -##################################################### -# -# 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-server.service -Wants=postgresql.service -After=redis-server.service postgresql.service - -[Service] -User=gitlab -WorkingDirectory=/usr/share/gitlab -EnvironmentFile=/etc/gitlab/gitlab-debian.conf -SyslogIdentifier=gitlab-unicorn -PIDFile=/run/gitlab/unicorn.pid - -ExecStart=/bin/sh bin/web start -ExecStop=/bin/sh bin/web stop - -[Install] -WantedBy=multi-user.target diff --git a/debian/conf/gitlab-workhorse.service b/debian/conf/gitlab-workhorse.service deleted file mode 100644 index bdb3e0d83b..0000000000 --- a/debian/conf/gitlab-workhorse.service +++ /dev/null @@ -1,27 +0,0 @@ -##################################################### -# -# GitLab version : 8.2 - 8.x -# Contributors : bjorn-oivind -# Downloaded from : https://gitlab.com/gitlab-org/gitlab-recipes/tree/master/init/systemd -# -#################################################### - -[Unit] -Description=Gitlab Workhorse handles slow HTTP requests for Gitlab. -PartOf=gitlab.target -Requires=gitlab-unicorn.service -Wants=gitlab-unicorn.service -After=gitlab-unicorn.service - -[Service] -Type=forking -User=gitlab -WorkingDirectory=/usr/share/gitlab -EnvironmentFile=/etc/gitlab/gitlab-debian.conf -SyslogIdentifier=gitlab-workhorse -PIDFile=/run/gitlab/gitlab-workhorse.pid - -ExecStart=/usr/share/gitlab/bin/daemon_with_pidfile ${gitlab_pid_path}/gitlab-workhorse.pid gitlab-workhorse -listenUmask 0 -listenNetwork unix -listenAddr ${gitlab_pid_path}/gitlab-workhorse.socket -authBackend http://127.0.0.1:8080 -authSocket ${gitlab_pid_path}/gitlab.socket -documentRoot ${gitlab_app_root}/public >> ${gitlab_log_dir}/gitlab-workhorse.log 2>&1 - -[Install] -WantedBy=multi-user.target