From: hickert Date: Fri, 7 Mar 2008 14:21:00 +0000 (+0000) Subject: Updated syslog database. X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=edd6c37ff74cedf8ad237f118435f0167a70931d;p=gosa.git Updated syslog database. -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 --- diff --git a/gosa-core/contrib/mysql/golog/golog.sql b/gosa-core/contrib/mysql/golog/golog.sql index 0461fdc48..d5b5f6b32 100644 --- a/gosa-core/contrib/mysql/golog/golog.sql +++ b/gosa-core/contrib/mysql/golog/golog.sql @@ -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';