We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 057330b commit 862cea4Copy full SHA for 862cea4
init/sysvinit/centos/gitlab-unicorn
@@ -101,14 +101,14 @@ query_status() {
101
case "$1" in
102
start)
103
query_status && exit 0
104
- start
+ start || exit 1
105
;;
106
stop)
107
query_status || exit 0
108
- stop
+ stop || exit 1
109
110
restart)
111
- restart
+ restart || exit 1
112
113
status)
114
get_status
@@ -121,5 +121,4 @@ case "$1" in
121
122
esac
123
124
-exit 0
125
-
+exit 0
0 commit comments