Commit 7c7de65c authored by Frédéric Buclin's avatar Frédéric Buclin

Bug 416784: In PostgreSQL 8.1 and newer, createuser takes the argument -R instead of -A

r=manu a=LpSolit
parent 47e67526
...@@ -843,12 +843,12 @@ max_allowed_packet=4M ...@@ -843,12 +843,12 @@ max_allowed_packet=4M
<para>As the postgres user, you then need to create a new user: </para> <para>As the postgres user, you then need to create a new user: </para>
<screen> <prompt>bash$</prompt> createuser -U postgres -dAP bugs</screen> <screen> <prompt>bash$</prompt> createuser -U postgres -dRSP bugs</screen>
<para>When asked for a password, provide the password which will be set as <para>When asked for a password, provide the password which will be set as
<replaceable>$db_pass</replaceable> in <filename>localconfig</filename>. <replaceable>$db_pass</replaceable> in <filename>localconfig</filename>.
The created user will have the ability to create databases and will not be The created user will not be a superuser (-S) and will not be able to create
able to create new users.</para> new users (-R). He will only have the ability to create databases (-d).</para>
</section> </section>
<section> <section>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment