[giapeto] GRANT lines in database scripts
Mike Pelley
mike at pelley.com
Sat Sep 27 18:31:18 PDT 2003
I noticed that the database scripts did not have GRANT lines to give the
horde user access. The following patches will add these lines.
Thanks! Mike.
Index: scripts/drivers/bookmarks.sql
===================================================================
RCS file: /usr/cvsroot/horde/giapeto/scripts/drivers/bookmarks.sql,v
retrieving revision 1.2
diff -u -r1.2 bookmarks.sql
--- scripts/drivers/bookmarks.sql 17 Aug 2003 23:39:30 -0000 1.2
+++ scripts/drivers/bookmarks.sql 28 Sep 2003 01:25:47 -0000
@@ -9,3 +9,5 @@
PRIMARY KEY (bookmark_id)
);
+
+GRANT SELECT, INSERT, UPDATE, DELETE ON giapeto_bookmarks TO horde;
Index: scripts/drivers/stats.sql
===================================================================
RCS file: /usr/cvsroot/horde/giapeto/scripts/drivers/stats.sql,v
retrieving revision 1.1
diff -u -r1.1 stats.sql
--- scripts/drivers/stats.sql 30 Aug 2003 07:01:44 -0000 1.1
+++ scripts/drivers/stats.sql 28 Sep 2003 01:26:11 -0000
@@ -9,3 +9,5 @@
PRIMARY KEY (stats_id)
);
+
+GRANT SELECT, INSERT, UPDATE, DELETE ON giapeto_stats TO horde;
More information about the giapeto
mailing list