summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcr7pt0gr4ph7 <cr7pt0gr4ph7@gmail.com>2014-04-16 10:06:07 +0200
committercr7pt0gr4ph7 <cr7pt0gr4ph7@gmail.com>2014-04-16 10:06:07 +0200
commit489fea02230e8b4489bd0a896a9c09548512c535 (patch)
tree411c279a29066d32e392305ff3cd072122191bb3
parentb16ffe404d85180193f5a98a89b9019ea5b3be49 (diff)
downloadgitlab-ci-489fea02230e8b4489bd0a896a9c09548512c535.tar.gz
Make the init.d script's output refer to "GitLab CI" instead of "GitLab".
-rwxr-xr-xlib/support/init.d/gitlab_ci12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/support/init.d/gitlab_ci b/lib/support/init.d/gitlab_ci
index 7a959e2..248c20f 100755
--- a/lib/support/init.d/gitlab_ci
+++ b/lib/support/init.d/gitlab_ci
@@ -226,21 +226,21 @@ stop() {
print_status() {
check_status
if [ "$web_status" != "0" -a "$sidekiq_status" != "0" ]; then
- echo "GitLab is not running."
+ echo "GitLab CI is not running."
return
fi
if [ "$web_status" = "0" ]; then
- echo "The GitLab Unicorn web server with pid $wpid is running."
+ echo "The GitLab CI Unicorn web server with pid $wpid is running."
else
- printf "The GitLab Unicorn web server is \033[31mnot running\033[0m.\n"
+ printf "The GitLab CI Unicorn web server is \033[31mnot running\033[0m.\n"
fi
if [ "$sidekiq_status" = "0" ]; then
- echo "The GitLab Sidekiq job dispatcher with pid $spid is running."
+ echo "The GitLab CI Sidekiq job dispatcher with pid $spid is running."
else
- printf "The GitLab Sidekiq job dispatcher is \033[31mnot running\033[0m.\n"
+ printf "The GitLab CI Sidekiq job dispatcher is \033[31mnot running\033[0m.\n"
fi
if [ "$web_status" = "0" -a "$sidekiq_status" = "0" ]; then
- printf "GitLab and all its components are \033[32mup and running\033[0m.\n"
+ printf "GitLab CI and all its components are \033[32mup and running\033[0m.\n"
fi
}