summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorBen Bodenmiller <bbodenmiller@hotmail.com>2013-05-19 02:13:39 -0700
committerBen Bodenmiller <bbodenmiller@hotmail.com>2013-05-19 02:13:39 -0700
commitde29a424e6d1a5349a2738e9f02b04fe168f3676 (patch)
tree6b68f3f3f96d210cc7c59d5bd5350e65d11168e7 /lib
parent6cf29166680e062ba7ab264271b8475f5ab98bb2 (diff)
downloadgitlab-ce-de29a424e6d1a5349a2738e9f02b04fe168f3676.tar.gz
changed Gitlab to GitLab
Diffstat (limited to 'lib')
-rw-r--r--lib/support/init.d/gitlab2
-rw-r--r--lib/tasks/gitlab/check.rake18
2 files changed, 10 insertions, 10 deletions
diff --git a/lib/support/init.d/gitlab b/lib/support/init.d/gitlab
index 47996594e3b..4c5499bbf23 100644
--- a/lib/support/init.d/gitlab
+++ b/lib/support/init.d/gitlab
@@ -24,7 +24,7 @@ SIDEKIQ_PID="$PID_PATH/sidekiq.pid"
STOP_SIDEKIQ="RAILS_ENV=production bundle exec rake sidekiq:stop"
START_SIDEKIQ="RAILS_ENV=production bundle exec rake sidekiq:start"
NAME="gitlab"
-DESC="Gitlab service"
+DESC="GitLab service"
check_pid(){
if [ -f $WEB_SERVER_PID ]; then
diff --git a/lib/tasks/gitlab/check.rake b/lib/tasks/gitlab/check.rake
index 77f5c02be2e..5e4a74b6260 100644
--- a/lib/tasks/gitlab/check.rake
+++ b/lib/tasks/gitlab/check.rake
@@ -362,10 +362,10 @@ namespace :gitlab do
namespace :gitlab_shell do
- desc "GITLAB | Check the configuration of Gitlab Shell"
+ desc "GITLAB | Check the configuration of GitLab Shell"
task check: :environment do
warn_user_is_not_gitlab
- start_checking "Gitlab Shell"
+ start_checking "GitLab Shell"
check_gitlab_shell
check_repo_base_exists
@@ -375,7 +375,7 @@ namespace :gitlab do
check_post_receive_hook_is_up_to_date
check_repos_post_receive_hooks_is_link
- finished_checking "Gitlab Shell"
+ finished_checking "GitLab Shell"
end
@@ -410,12 +410,12 @@ namespace :gitlab do
puts "no".red
puts "#{repo_base_path} is missing".red
try_fixing_it(
- "This should have been created when setting up Gitlab Shell.",
+ "This should have been created when setting up GitLab Shell.",
"Make sure it's set correctly in config/gitlab.yml",
- "Make sure Gitlab Shell is installed correctly."
+ "Make sure GitLab Shell is installed correctly."
)
for_more_information(
- see_installation_guide_section "Gitlab Shell"
+ see_installation_guide_section "GitLab Shell"
)
fix_and_rerun
end
@@ -460,7 +460,7 @@ namespace :gitlab do
"find #{repo_base_path} -type d -print0 | sudo xargs -0 chmod g+s"
)
for_more_information(
- see_installation_guide_section "Gitlab Shell"
+ see_installation_guide_section "GitLab Shell"
)
fix_and_rerun
end
@@ -486,7 +486,7 @@ namespace :gitlab do
"sudo chown -R #{gitlab_shell_ssh_user}:#{gitlab_shell_owner_group} #{repo_base_path}"
)
for_more_information(
- see_installation_guide_section "Gitlab Shell"
+ see_installation_guide_section "GitLab Shell"
)
fix_and_rerun
end
@@ -535,7 +535,7 @@ namespace :gitlab do
File.realpath(project_hook_file) == File.realpath(gitlab_shell_hook_file)
puts "ok".green
else
- puts "not a link to Gitlab Shell's hook".red
+ puts "not a link to GitLab Shell's hook".red
try_fixing_it(
"sudo -u #{gitlab_shell_ssh_user} ln -sf #{gitlab_shell_hook_file} #{project_hook_file}"
)