@@ -173,7 +173,7 @@ check_stale_pids(){
173
173
fi
174
174
fi
175
175
if [ " $hpid " != " 0" ] && [ " $gitlab_workhorse_status " != " 0" ]; then
176
- echo " Removing stale gitlab-workhorse pid. This is most likely caused by gitlab-workhorse crashing the last time it ran."
176
+ echo " Removing stale GitLab Workhorse pid. This is most likely caused by GitLab Workhorse crashing the last time it ran."
177
177
if ! rm " $gitlab_workhorse_pid_path " ; then
178
178
echo " Unable to remove stale pid, exiting"
179
179
exit 1
@@ -208,7 +208,7 @@ start_gitlab() {
208
208
echo " Starting GitLab Sidekiq"
209
209
fi
210
210
if [ " $gitlab_workhorse_status " != " 0" ]; then
211
- echo " Starting gitlab-workhorse "
211
+ echo " Starting GitLab Workhorse "
212
212
fi
213
213
if [ " $mail_room_enabled " = true ] && [ " $mail_room_status " != " 0" ]; then
214
214
echo " Starting GitLab MailRoom"
@@ -232,7 +232,7 @@ start_gitlab() {
232
232
fi
233
233
234
234
if [ " $gitlab_workhorse_status " = " 0" ]; then
235
- echo " The gitlab-workhorse is already running with pid $spid , not restarting"
235
+ echo " The GitLab Workhorse is already running with pid $spid , not restarting"
236
236
else
237
237
# No need to remove a socket, gitlab-workhorse does this itself.
238
238
# Because gitlab-workhorse has multiple executables we need to fix
@@ -271,7 +271,7 @@ stop_gitlab() {
271
271
RAILS_ENV=$RAILS_ENV bin/background_jobs stop
272
272
fi
273
273
if [ " $gitlab_workhorse_status " = " 0" ]; then
274
- echo " Shutting down gitlab-workhorse "
274
+ echo " Shutting down GitLab Workhorse "
275
275
kill -- $( cat $gitlab_workhorse_pid_path )
276
276
fi
277
277
if [ " $mail_room_enabled " = true ] && [ " $mail_room_status " = " 0" ]; then
@@ -320,9 +320,9 @@ print_status() {
320
320
printf " The GitLab Sidekiq job dispatcher is \033[31mnot running\033[0m.\n"
321
321
fi
322
322
if [ " $gitlab_workhorse_status " = " 0" ]; then
323
- echo " The gitlab-workhorse with pid $hpid is running."
323
+ echo " The GitLab Workhorse with pid $hpid is running."
324
324
else
325
- printf " The gitlab-workhorse is \033[31mnot running\033[0m.\n"
325
+ printf " The GitLab Workhorse is \033[31mnot running\033[0m.\n"
326
326
fi
327
327
if [ " $mail_room_enabled " = true ]; then
328
328
if [ " $mail_room_status " = " 0" ]; then
0 commit comments