debian-mirror-gitlab/debian/patches/0610-source-init-functions.patch
2020-05-25 16:23:42 +05:30

25 lines
942 B
Diff

Description: fix lintian warning and init script error
Bug: https://gitlab.com/gitlab-org/gitlab-ce/issues/12954
--- a/lib/support/init.d/gitlab
+++ b/lib/support/init.d/gitlab
@@ -15,6 +15,9 @@
# chkconfig: - 85 14
### END INIT INFO
+### source init functions
+. /lib/init/vars.sh
+. /lib/lsb/init-functions
###
# DO NOT EDIT THIS FILE!
@@ -48,7 +51,7 @@
web_server_pid_path="$pid_path/$use_web_server.pid"
mail_room_enabled=false
mail_room_pid_path="$pid_path/mail_room.pid"
-gitlab_workhorse_dir=$(cd $app_root/../gitlab-workhorse 2> /dev/null && pwd)
+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"