Code

Updated syslog database.
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 7 Mar 2008 14:21:00 +0000 (14:21 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 7 Mar 2008 14:21:00 +0000 (14:21 +0000)
-The database name is 'gomon' not 'golog'. This is hard coded in the syslog plugin.

git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@9440 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-core/contrib/mysql/golog/golog.sql

index 0461fdc48e191f0c86ac93e938482def37268d3b..d5b5f6b32b7d42cb99f5988cd3e76722e0b9f599 100644 (file)
@@ -1,6 +1,6 @@
 
-create database golog;
-use golog;
+create database gomon;
+use gomon;
 
 create table golog (
        time_stamp DATETIME,
@@ -11,4 +11,4 @@ create table golog (
        matched_ts DATETIME
        );
 
-GRANT INSERT,SELECT,DELETE ON golog.golog TO gomon@localhost IDENTIFIED BY 'somemysqlpass';
+GRANT INSERT,SELECT,DELETE ON gomon.golog TO gomon@localhost IDENTIFIED BY 'somemysqlpass';