Skip to content
Snippets Groups Projects
Commit 2bb8e93d authored by Marin Jankovski's avatar Marin Jankovski
Browse files

Merge pull request #8246 from dluchinienoc/master

Do not require immediate password reset if specifying a password
parents 9a2afa00 019c0f9e
No related branches found
No related tags found
No related merge requests found
password = if ENV['GITLAB_ROOT_PASSWORD'].blank? if ENV['GITLAB_ROOT_PASSWORD'].blank?
"5iveL!fe" password = '5iveL!fe'
else expire_time = Time.now
ENV['GITLAB_ROOT_PASSWORD'] else
end password = ENV['GITLAB_ROOT_PASSWORD']
expire_time = nil
end
   
admin = User.create( admin = User.create(
email: "admin@example.com", email: "admin@example.com",
Loading
@@ -10,7 +12,7 @@ admin = User.create(
Loading
@@ -10,7 +12,7 @@ admin = User.create(
username: 'root', username: 'root',
password: password, password: password,
password_confirmation: password, password_confirmation: password,
password_expires_at: Time.now, password_expires_at: expire_time,
theme_id: Gitlab::Theme::MARS theme_id: Gitlab::Theme::MARS
   
) )
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment