]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 416784: In PostgreSQL 8.1 and newer, createuser takes the argument -R instead...
authorFrédéric Buclin <LpSolit@gmail.com>
Sat, 27 Nov 2010 21:04:55 +0000 (22:04 +0100)
committerFrédéric Buclin <LpSolit@gmail.com>
Sat, 27 Nov 2010 21:04:55 +0000 (22:04 +0100)
r=manu a=LpSolit

docs/en/xml/installation.xml

index 22de51ffd62bdbb7fe2226f9bea49a153966c8ac..1e8003e6ba996f1274183c462cab8fbeb1dabf9c 100644 (file)
@@ -855,12 +855,16 @@ max_allowed_packet=4M
 
           <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
           <replaceable>$db_pass</replaceable> in <filename>localconfig</filename>.
-          The created user will have the ability to create databases and will not be
-          able to create new users.</para>
+          The created user will not be a superuser (-S) and will not be able to create
+          new users (-R). He will only have the ability to create databases (-d).</para>
+
+          <note>
+            <para>If your are running PostgreSQL 8.0, you must replace -dRSP by -dAP.</para>
+          </note>
         </section>
         
         <section>