Skip to content

Commit

Permalink
Correctly quote the user's password
Browse files Browse the repository at this point in the history
  • Loading branch information
rolandgeider committed Nov 6, 2015
1 parent f3a6057 commit 19e4406
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/production.rst
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ Install the postgres server and create a database and a user::
sudo apt-get install postgresql
su - postgres
createdb wger
psql wger -c "CREATE USER wger WITH PASSWORD wger";
psql wger -c "CREATE USER wger WITH PASSWORD 'wger'";
psql wger -c "GRANT ALL PRIVILEGES ON DATABASE wger to wger";


Expand Down

0 comments on commit 19e4406

Please sign in to comment.