View | Details | Raw Unified | Return to bug 107721
Collapse All | Expand All

(-)bacula-server/Makefile (+1 lines)
Lines 7-12 Link Here
7
7
8
PORTNAME=	bacula
8
PORTNAME=	bacula
9
DISTVERSION=	2.0.0
9
DISTVERSION=	2.0.0
10
PORTREVISION=	1
10
CATEGORIES=	sysutils
11
CATEGORIES=	sysutils
11
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
12
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
12
MASTER_SITE_SUBDIR=	bacula
13
MASTER_SITE_SUBDIR=	bacula
(-)bacula-server/files/patch-src-cats-grant_postgresql_privileges.in (+28 lines)
Line 0 Link Here
1
Index: grant_postgresql_privileges.in
2
===================================================================
3
RCS file: /cvsroot/bacula/bacula/src/cats/grant_postgresql_privileges.in,v
4
retrieving revision 1.9
5
diff -u -b -r1.9 grant_postgresql_privileges.in
6
--- src/cats/grant_postgresql_privileges.in	6 Nov 2005 18:04:08 -0000	1.9
7
+++ src/catsgrant_postgresql_privileges.in	9 Jan 2007 22:49:01 -0000
8
@@ -28,6 +28,9 @@
9
 grant all on storage	  to ${USER};
10
 grant all on device	  to ${USER};
11
 grant all on status	  to ${USER};
12
+grant all on location	  to ${USER};
13
+grant all on locationlog  to ${USER};
14
+grant all on log		  to ${USER};
15
 
16
 -- for sequences on those tables
17
 
18
@@ -44,7 +47,9 @@
19
 grant select, update on storage_storageid_seq	   to ${USER};
20
 grant select, update on mediatype_mediatypeid_seq  to ${USER};
21
 grant select, update on device_deviceid_seq	   to ${USER};
22
-
23
+grant select, update on location_locationid_seq		to ${USER};
24
+grant select, update on locationlog_loclogid_seq	to ${USER};
25
+grant select, update on log_logid_seq				to ${USER};
26
 
27
 END-OF-DATA
28
 then
(-)bacula-server/files/patch-src-cats-update_postgresql_tables.in (+20 lines)
Line 0 Link Here
1
Index: update_postgresql_tables.in
2
===================================================================
3
RCS file: /cvsroot/bacula/bacula/src/cats/update_postgresql_tables.in,v
4
retrieving revision 1.30
5
diff -u -b -r1.30 update_postgresql_tables.in
6
--- src/cats/update_postgresql_tables.in	27 Jul 2006 01:58:42 -0000	1.30
7
+++ src/cats/update_postgresql_tables.in	9 Jan 2007 22:49:20 -0000
8
@@ -1,10 +1,10 @@
9
 #!/bin/sh
10
 #
11
-# Shell script to update PostgreSQL tables from version 1.38 to 1.39
12
+# Shell script to update PostgreSQL tables from version 1.38 to 2.0.0 or higher
13
 #
14
 echo " "
15
 echo "This script will update a Bacula PostgreSQL database from version 9 to 10"
16
-echo " which is needed to convert from Bacula version 1.38.x to 1.39.x or higher"
17
+echo " which is needed to convert from Bacula version 1.38.x to 2.0.0 or higher"
18
 echo "Depending on the size of your database,"
19
 echo "this script may take several minutes to run."
20
 echo " "

Return to bug 107721