check gitlab-shell version in gitlab:check
This commit is contained in:
parent
102695530b
commit
147b93ee3e
1 changed files with 10 additions and 0 deletions
|
@ -348,6 +348,7 @@ namespace :gitlab do
|
||||||
warn_user_is_not_gitlab
|
warn_user_is_not_gitlab
|
||||||
start_checking "Gitlab Shell"
|
start_checking "Gitlab Shell"
|
||||||
|
|
||||||
|
check_gitlab_shell
|
||||||
check_repo_base_exists
|
check_repo_base_exists
|
||||||
check_repo_base_is_not_symlink
|
check_repo_base_is_not_symlink
|
||||||
check_repo_base_user_and_group
|
check_repo_base_user_and_group
|
||||||
|
@ -633,4 +634,13 @@ namespace :gitlab do
|
||||||
puts " #{step}"
|
puts " #{step}"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def check_gitlab_shell
|
||||||
|
print "GitLab Shell version? ... "
|
||||||
|
if gitlab_shell_version.strip == '1.1.0'
|
||||||
|
puts 'OK (1.1.0)'.green
|
||||||
|
else
|
||||||
|
puts 'FAIL. Please update gitlab-shell to v1.1.0'.red
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Reference in a new issue