Show
Ignore:
Timestamp:
03/29/06 00:03:44 (18 years ago)
Author:
jerome
Message:

Improved documentation for PostgreSQL and MySQL backends setup.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/initscripts/postgresql/pykota-postgresql.sql

    r2622 r2817  
    3535-- 
    3636-- Create the print quota database users 
     37-- NOTE: Change the password values to the passwords you would like. 
    3738--  
    38 CREATE USER pykotaadmin; 
    39 CREATE USER pykotauser; 
     39CREATE USER pykotauser WITH UNENCRYPTED PASSWORD 'readonlypw' NOCREATEDB NOCREATEUSER; 
     40CREATE USER pykotaadmin WITH UNENCRYPTED PASSWORD 'readwritepw' NOCREATEDB NOCREATEUSER; 
    4041 
    4142--