[695] | 1 | # $Id$ |
---|
| 2 | |
---|
[952] | 3 | PyKota - Print Quota for CUPS and LPRng |
---|
[695] | 4 | |
---|
| 5 | (c) 2003 Jerome Alet <alet@librelogiciel.com> |
---|
[873] | 6 | This program is free software; you can redistribute it and/or modify |
---|
| 7 | it under the terms of the GNU General Public License as published by |
---|
| 8 | the Free Software Foundation; either version 2 of the License, or |
---|
| 9 | (at your option) any later version. |
---|
[695] | 10 | |
---|
[873] | 11 | This program is distributed in the hope that it will be useful, |
---|
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 14 | GNU General Public License for more details. |
---|
[695] | 15 | |
---|
[873] | 16 | You should have received a copy of the GNU General Public License |
---|
| 17 | along with this program; if not, write to the Free Software |
---|
| 18 | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. |
---|
| 19 | |
---|
[695] | 20 | ============================================================ |
---|
| 21 | |
---|
| 22 | This directory contains scripts to initialise the PyKota |
---|
| 23 | storage database. Use the one which best suits your need |
---|
[887] | 24 | depending on the storage backend you want to use. |
---|
[695] | 25 | |
---|
[887] | 26 | |
---|
| 27 | Files : |
---|
| 28 | ======= |
---|
| 29 | |
---|
| 30 | * pykota-postgresql.sql : |
---|
| 31 | |
---|
| 32 | This file creates an empty Quota Storage Database, using PostgreSQL |
---|
| 33 | as a backend. You have to use it the first time you install PyKota |
---|
| 34 | if you want to use PostgreSQL as the Quota Storage Backend. |
---|
| 35 | |
---|
[942] | 36 | * VERYOLDpykota-upgrade-postgresql.sql : |
---|
[887] | 37 | |
---|
[889] | 38 | This file upgrades the PostgreSQL Quota Storage Database schema |
---|
[887] | 39 | from versions before 1.01 to version 1.01. |
---|
| 40 | |
---|
[951] | 41 | IT'S THERE FOR HISTORICAL REASONS ONLY : DON'T USE IT, USE |
---|
| 42 | THE SCRIPT DESCRIBED BELOW INSTEAD ! |
---|
| 43 | |
---|
[942] | 44 | * upgrade-from-before-1.03.py : |
---|
[887] | 45 | |
---|
| 46 | This shell script upgrades the PostgreSQL Quota Storage Database schema |
---|
| 47 | from versions 1.01 or 1.02 to version 1.03. |
---|
| 48 | PLEASE DO A BACKUP OF YOUR PYKOTA DATABASE BEFORE RUNNING THIS SCRIPT ! |
---|
| 49 | Also this script will try to connect to PostgreSQL as the postgres user |
---|
| 50 | (i.e. PostgreSQL's administrator), on the local machine (PyKota Storage |
---|
| 51 | Server), without prompting for a password. Please read this script and |
---|
| 52 | adapt it to your own configuration before running it. THIS IS IMPORTANT. |
---|
[942] | 53 | |
---|
| 54 | THIS SCRIPT MAKES ANY REASONABLE CHECK TO ENSURE THAT YOUR DATAS WON'T |
---|
| 55 | BE LOST, AND ALSO DUMPS YOUR OLD DATABASE TO A TEXT FILE BEFORE DOING |
---|
| 56 | ANYTHING. IT WAS TESTED SEVERAL TIMES AND SHOULDN'T PRODUCE ANY ERROR |
---|
| 57 | EXCEPT ABOUT THE pykotaadmin and pykotauser POSTGRESQL USERS WHO |
---|
| 58 | ALREADY EXIST WHEN THE DATABASE SCHEMA IS UPGRADED. THIS IS NORMAL ! |
---|
[887] | 59 | |
---|