From afc7de9e50250f911384cef1270862fb6419cbd2 Mon Sep 17 00:00:00 2001 From: Zachary Kjellberg Date: Wed, 23 Jan 2013 15:34:23 -0500 Subject: [PATCH] MySQL Placeholder password Move filler password warning to second line to make sure users read information. Does an interrupt character exist for MySQL? This command can be entered without issue which probably causes a few users to copy and paste this command then need to go back and modify the password later. --- doc/install/databases.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/install/databases.md b/doc/install/databases.md index 4c6c084d0b9..8e466cc4c74 100644 --- a/doc/install/databases.md +++ b/doc/install/databases.md @@ -14,7 +14,8 @@ GitLab supports the following databases: # Login to MySQL $ mysql -u root -p - # Create a user for GitLab. (change $password to a real password) + # Create a user for GitLab. + # (Change $password to a real password) mysql> CREATE USER 'gitlab'@'localhost' IDENTIFIED BY '$password'; # Create the GitLab production database -- GitLab