Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authorRobert Speicher <rspeicher@gmail.com>2015-06-22 20:43:45 +0300
committerRobert Speicher <rspeicher@gmail.com>2015-06-25 01:42:34 +0300
commit8a01a1222875b190d32769f7a6e7a74720079d2a (patch)
treea1eb288b4a4fc4161bbe085a7d010c6df6746fde /db
parentd2de219f6cf5d6ce371f529988f9337653878e58 (diff)
Change default admin password from "5iveL!fe" to "password"
Diffstat (limited to 'db')
-rw-r--r--db/fixtures/development/01_admin.rb2
-rw-r--r--db/fixtures/production/001_admin.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/db/fixtures/development/01_admin.rb b/db/fixtures/development/01_admin.rb
index bba2fc4b186..b25d0dfc701 100644
--- a/db/fixtures/development/01_admin.rb
+++ b/db/fixtures/development/01_admin.rb
@@ -5,7 +5,7 @@ Gitlab::Seeder.quiet do
s.email = 'admin@example.com'
s.notification_email = 'admin@example.com'
s.username = 'root'
- s.password = '5iveL!fe'
+ s.password = 'password'
s.admin = true
s.projects_limit = 100
s.confirmed_at = DateTime.now
diff --git a/db/fixtures/production/001_admin.rb b/db/fixtures/production/001_admin.rb
index 1c8740f6ba9..1af8dfc0ef0 100644
--- a/db/fixtures/production/001_admin.rb
+++ b/db/fixtures/production/001_admin.rb
@@ -1,5 +1,5 @@
if ENV['GITLAB_ROOT_PASSWORD'].blank?
- password = '5iveL!fe'
+ password = 'password'
expire_time = Time.now
else
password = ENV['GITLAB_ROOT_PASSWORD']