Commit ae7e3806 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Add active users to gitlab:check

parent 82bb3ec3
...@@ -29,6 +29,7 @@ namespace :gitlab do ...@@ -29,6 +29,7 @@ namespace :gitlab do
check_redis_version check_redis_version
check_ruby_version check_ruby_version
check_git_version check_git_version
check_active_users
finished_checking "GitLab" finished_checking "GitLab"
end end
...@@ -781,6 +782,10 @@ namespace :gitlab do ...@@ -781,6 +782,10 @@ namespace :gitlab do
end end
end end
def check_active_users
puts "Active users: #{User.active.count}"
end
def omnibus_gitlab? def omnibus_gitlab?
Dir.pwd == '/opt/gitlab/embedded/service/gitlab-rails' Dir.pwd == '/opt/gitlab/embedded/service/gitlab-rails'
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment