debian-mirror-gitlab/debian/patches/0610-source-init-functions.patch

25 lines
1,004 B
Diff
Raw Normal View History

2016-02-02 19:47:30 +05:30
Description: fix lintian warning and init script error
Bug: https://gitlab.com/gitlab-org/gitlab-ce/issues/12954
2016-01-20 00:51:50 +05:30
2018-03-27 22:49:57 +05:30
--- a/lib/support/init.d/gitlab
+++ b/lib/support/init.d/gitlab
2015-12-15 14:59:01 +05:30
@@ -23,6 +23,9 @@
# An example defaults file can be found in lib/support/init.d/gitlab.default.example
###
+### source init functions
+. /lib/init/vars.sh
+. /lib/lsb/init-functions
### Environment variables
RAILS_ENV="production"
2019-07-31 23:45:35 +05:30
@@ -39,7 +42,7 @@
2020-04-22 19:44:27 +05:30
web_server_pid_path="$pid_path/unicorn.pid"
2016-02-02 19:39:43 +05:30
mail_room_enabled=false
mail_room_pid_path="$pid_path/mail_room.pid"
2016-04-02 18:29:19 +05:30
-gitlab_workhorse_dir=$(cd $app_root/../gitlab-workhorse 2> /dev/null && pwd)
2016-02-02 19:39:43 +05:30
+gitlab_workhorse_dir=$app_root/../gitlab-workhorse
gitlab_workhorse_pid_path="$pid_path/gitlab-workhorse.pid"
gitlab_workhorse_options="-listenUmask 0 -listenNetwork unix -listenAddr $socket_path/gitlab-workhorse.socket -authBackend http://127.0.0.1:8080 -authSocket $rails_socket -documentRoot $app_root/public"
gitlab_workhorse_log="$app_root/log/gitlab-workhorse.log"