Changeset 974 for trunk/packages/sipb-xen-database
- Timestamp:
- Oct 1, 2008, 2:10:33 AM (16 years ago)
- Location:
- trunk/packages/sipb-xen-database
- Files:
-
- 6 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/packages/sipb-xen-database/debian/changelog
r972 r974 1 sipb-xen-database (10.23) unstable; urgency=low 2 3 * switch to postgresql 8.3, as 8.1 isn't in hardy 4 5 -- Greg Price <price@mit.edu> Wed, 01 Oct 2008 02:09:43 -0400 6 1 7 sipb-xen-database (10.22) unstable; urgency=low 2 8 -
trunk/packages/sipb-xen-database/debian/control
r972 r974 15 15 Package: sipb-xen-database-server 16 16 Architecture: all 17 Depends: ${misc:Depends}, ${python:Depends}, postgresql , python-sqlalchemy, python-psycopg2, sipb-xen-database-common, adduser17 Depends: ${misc:Depends}, ${python:Depends}, postgresql-8.3, python-sqlalchemy, python-psycopg2, sipb-xen-database-common, adduser 18 18 Description: Installs the SIPB Xen database server 19 19 This tracks all the user VMs and is accessed from the VM host … … 21 21 Package: sipb-xen-database-client 22 22 Architecture: all 23 Depends: ${misc:Depends}, postgresql-client , python-sqlalchemy, python-psycopg2, sipb-xen-database-common, python23 Depends: ${misc:Depends}, postgresql-client-8.3, python-sqlalchemy, python-psycopg2, sipb-xen-database-common, python 24 24 Description: Installs the SIPB Xen database configuration file 25 25 This is a python xen configuration script that talks to the database -
trunk/packages/sipb-xen-database/debian/rules
r923 r974 4 4 DEB_DIVERT_EXTENSION = .invirt 5 5 DEB_DIVERT_FILES_sipb-xen-database-server += \ 6 /etc/postgresql/8. 1/main/postgresql.conf.invirt6 /etc/postgresql/8.3/main/postgresql.conf.invirt 7 7 8 8 -
trunk/packages/sipb-xen-database/debian/sipb-xen-database-server.init
r918 r974 38 38 gen_config() 39 39 { 40 for i in /etc/postgresql/8. 1/main/pg_hba.conf40 for i in /etc/postgresql/8.3/main/pg_hba.conf 41 41 ; do 42 42 mako-render $i.mako > $i -
trunk/packages/sipb-xen-database/debian/sipb-xen-database-server.postinst
r918 r974 36 36 adduser --system sipb-xen 37 37 fi 38 mako-render /etc/postgresql/8. 1/main/pg_hba.conf.mako >/etc/postgresql/8.1/main/pg_hba.conf39 /etc/init.d/postgresql-8. 1restart38 mako-render /etc/postgresql/8.3/main/pg_hba.conf.mako >/etc/postgresql/8.3/main/pg_hba.conf 39 /etc/init.d/postgresql-8.3 restart 40 40 su sipb-xen -s /bin/sh -c 'sipb-xen-database-tables create' 41 41 ;; -
trunk/packages/sipb-xen-database/server/etc/postgresql/8.3/main/postgresql.conf.invirt
r923 r974 34 34 35 35 #data_directory = 'ConfigDir' # use data in another directory 36 hba_file = '/etc/postgresql/8. 1/main/pg_hba.conf' # host-based authentication file37 ident_file = '/etc/postgresql/8. 1/main/pg_ident.conf' # IDENT configuration file36 hba_file = '/etc/postgresql/8.3/main/pg_hba.conf' # host-based authentication file 37 ident_file = '/etc/postgresql/8.3/main/pg_ident.conf' # IDENT configuration file 38 38 39 39 # If external_pid_file is not explicitly set, no extra pid file is written. 40 external_pid_file = '/var/run/postgresql/8. 1-main.pid' # write an extra pid file40 external_pid_file = '/var/run/postgresql/8.3-main.pid' # write an extra pid file 41 41 42 42
Note: See TracChangeset
for help on using the changeset viewer.