Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
heptapod
heptapod
Commits
54ed61c74235
Commit
71266ad2
authored
Dec 10, 2012
by
Riyad Preukschas
Browse files
Split and renamed check tasks
parent
c1bb0ae0cda4
Changes
1
Hide whitespace changes
Inline
Side-by-side
lib/tasks/gitlab/check.rake
View file @
54ed61c7
namespace
:gitlab
do
desc
"GITLAB | Check the configuration of GitLab and its environment"
task
check:
%w{gitlab:env:check
gitlab:app:check
gitlab:gitolite:check
gitlab:resque:check}
namespace
:app
do
desc
"GITLAB | Check GitLab installation status"
task
:status
=>
:environment
do
puts
"
\n
Starting diagnostics"
.
yellow
git_base_path
=
Gitlab
.
config
.
git_base_path
desc
"GITLAB | Check the configuration of the GitLab Rails app"
task
check: :environment
do
print
"config/database.yml............"
if
File
.
exists?
(
Rails
.
root
.
join
"config"
,
"database.yml"
)
...
...
@@ -20,6 +24,19 @@ namespace :gitlab do
puts
"missing"
.
red
return
end
end
end
namespace
:env
do
desc
"GITLAB | Check the configuration of the environment"
task
check: :environment
do
end
end
namespace
:gitolite
do
desc
"GITLAB | Check the configuration of Gitolite"
task
check: :environment
do
git_base_path
=
Gitlab
.
config
.
git_base_path
print
"
#{
git_base_path
}
............"
if
File
.
exists?
(
git_base_path
)
...
...
@@ -106,8 +123,12 @@ namespace :gitlab do
end
end
end
end
end
puts
"
\n
Finished"
.
blue
namespace
:resque
do
desc
"GITLAB | Check the configuration of Resque"
task
check: :environment
do
end
end
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment