Commit 416f551e70444ccba051c3f5b53f4c0df2b73eaa
Exists in
spb-stable
and in
3 other branches
Merge pull request #5879 from krzaczek/smartos-fix
Init script - change stop() function name to stop_gitlab()
Showing
1 changed file
with
10 additions
and
10 deletions
Show diff stats
lib/support/init.d/gitlab
... | ... | @@ -149,7 +149,7 @@ exit_if_not_running(){ |
149 | 149 | } |
150 | 150 | |
151 | 151 | ## Starts Unicorn and Sidekiq if they're not running. |
152 | -start() { | |
152 | +start_gitlab() { | |
153 | 153 | check_stale_pids |
154 | 154 | |
155 | 155 | if [ "$web_status" != "0" -a "$sidekiq_status" != "0" ]; then |
... | ... | @@ -184,7 +184,7 @@ start() { |
184 | 184 | } |
185 | 185 | |
186 | 186 | ## Asks the Unicorn and the Sidekiq if they would be so kind as to stop, if not kills them. |
187 | -stop() { | |
187 | +stop_gitlab() { | |
188 | 188 | exit_if_not_running |
189 | 189 | |
190 | 190 | if [ "$web_status" = "0" -a "$sidekiq_status" = "0" ]; then |
... | ... | @@ -246,7 +246,7 @@ print_status() { |
246 | 246 | } |
247 | 247 | |
248 | 248 | ## Tells unicorn to reload it's config and Sidekiq to restart |
249 | -reload(){ | |
249 | +reload_gitlab(){ | |
250 | 250 | exit_if_not_running |
251 | 251 | if [ "$wpid" = "0" ];then |
252 | 252 | echo "The GitLab Unicorn Web server is not running thus its configuration can't be reloaded." |
... | ... | @@ -263,12 +263,12 @@ reload(){ |
263 | 263 | } |
264 | 264 | |
265 | 265 | ## Restarts Sidekiq and Unicorn. |
266 | -restart(){ | |
266 | +restart_gitlab(){ | |
267 | 267 | check_status |
268 | 268 | if [ "$web_status" = "0" -o "$sidekiq_status" = "0" ]; then |
269 | - stop | |
269 | + stop_gitlab | |
270 | 270 | fi |
271 | - start | |
271 | + start_gitlab | |
272 | 272 | } |
273 | 273 | |
274 | 274 | |
... | ... | @@ -276,16 +276,16 @@ restart(){ |
276 | 276 | |
277 | 277 | case "$1" in |
278 | 278 | start) |
279 | - start | |
279 | + start_gitlab | |
280 | 280 | ;; |
281 | 281 | stop) |
282 | - stop | |
282 | + stop_gitlab | |
283 | 283 | ;; |
284 | 284 | restart) |
285 | - restart | |
285 | + restart_gitlab | |
286 | 286 | ;; |
287 | 287 | reload|force-reload) |
288 | - reload | |
288 | + reload_gitlab | |
289 | 289 | ;; |
290 | 290 | status) |
291 | 291 | print_status | ... | ... |