Changeset 1473 for pykota/trunk/initscripts
- Timestamp:
- 05/13/04 13:15:29 (21 years ago)
- Location:
- pykota/trunk/initscripts
- Files:
-
- 1 added
- 4 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/initscripts/ldap/pykota.schema
r1455 r1473 169 169 SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE ) 170 170 171 # pykotaHostName 172 attributetype ( 1.3.6.1.4.1.16868.1.1.24 NAME 'pykotaHostName' 173 DESC 'The host the job is coming from' 174 EQUALITY caseIgnoreMatch 175 SUBSTR caseIgnoreSubstringsMatch 176 SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{256} ) 177 171 178 # 172 179 # PyKota Object Classes … … 207 214 DESC 'An entry in the job history for a printer' 208 215 MUST ( cn $ pykotaUserName $ pykotaPrinterName $ pykotaJobId ) 209 MAY ( pykotaPrinterPageCounter $ pykotaJobSize $ pykotaAction $ pykotaJobPrice $ pykotaFileName $ pykotaTitle $ pykotaCopies $ pykotaOptions ) )216 MAY ( pykotaPrinterPageCounter $ pykotaJobSize $ pykotaAction $ pykotaJobPrice $ pykotaFileName $ pykotaTitle $ pykotaCopies $ pykotaOptions $ pykotaHostName ) ) 210 217 211 218 # pykotaAccountBalance -
pykota/trunk/initscripts/postgresql/pykota-postgresql.sql
r1257 r1473 20 20 -- 21 21 -- $Log$ 22 -- Revision 1.9 2004/05/13 11:15:29 jalet 23 -- Added hostname field in job history 24 -- 22 25 -- Revision 1.8 2004/01/08 14:10:32 jalet 23 26 -- Copyright year changed. … … 118 121 userid INT4, 119 122 printerid INT4, 123 hostname TEXT, 120 124 pagecounter INT4 DEFAULT 0, 121 125 jobsize INT4, -
pykota/trunk/initscripts/postgresql/README.postgresql
r1257 r1473 59 59 version of PyKota. 60 60 61 * An SQL script to upgrade a 1.18 PyKota Storage DataBase to 62 1.19 is included. Launch it this way on the Quota Storage Server : 63 64 $ psql -U postgres pykota 65 pykota=# \i upgrade-to-1.19.sql 66 pykota=# \q 67 $ 68 69 This script adds a field to the print job history. The field that 70 is added is : hostname 71 61 72 * An SQL script to upgrade a pre-1.16 PyKota Storage DataBase to 62 73 1.16 is included. Launch it this way on the Quota Storage Server : -
pykota/trunk/initscripts/README
r1257 r1473 45 45 ============================================================================= 46 46 47 * upgrade-to-1.19.sql : 48 49 This file upgrades the PostgreSQL Quota Storage Database schema 50 from versions before 1.19alpha7 to version 1.19alpha7 and above. 51 NEVER USE IT IF YOU ALREADY RUN 1.19alpha7 OR ABOVE ! 52 47 53 * upgrade-to-1.16.sql : 48 54