gitlab-org--gitlab-foss/db/fixtures/production/002_admin.rb

41 lines
1.1 KiB
Ruby
Raw Normal View History

user_args = {
email: ENV['GITLAB_ROOT_EMAIL'].presence || 'admin@example.com',
name: 'Administrator',
username: 'root',
admin: true
}
if ENV['GITLAB_ROOT_PASSWORD'].blank?
user_args[:password_automatically_set] = true
user_args[:force_random_password] = true
else
user_args[:password] = ENV['GITLAB_ROOT_PASSWORD']
end
# Only admins can create other admin users in Users::CreateService so to solve
# the chicken-and-egg problem, we pass a non-persisted admin user to the service.
transient_admin = User.new(admin: true)
user = Users::CreateService.new(transient_admin, user_args.merge!(skip_confirmation: true)).execute
2011-10-08 21:36:38 +00:00
if user.persisted?
2016-06-06 21:17:42 +00:00
puts "Administrator account created:".color(:green)
puts
2016-06-06 21:17:42 +00:00
puts "login: root".color(:green)
2011-10-21 17:58:04 +00:00
if user_args.key?(:password)
2016-06-06 21:17:42 +00:00
puts "password: #{user_args[:password]}".color(:green)
else
2016-06-06 21:17:42 +00:00
puts "password: You'll be prompted to create one on your first visit.".color(:green)
end
puts
else
2016-06-06 21:17:42 +00:00
puts "Could not create the default administrator account:".color(:red)
puts
user.errors.full_messages.map do |message|
2016-06-06 21:17:42 +00:00
puts "--> #{message}".color(:red)
end
puts
2011-10-21 17:58:04 +00:00
exit 1
2011-10-21 17:58:04 +00:00
end