Commit 6766a9cb authored by Côme Chilliet's avatar Côme Chilliet
Browse files

Fixes #4464 Removed code related to deleted rsyslog plugin

Showing with 0 additions and 16 deletions
+0 -16
...@@ -537,22 +537,6 @@ class config { ...@@ -537,22 +537,6 @@ class config {
$this->data['SERVERS']['FON'][$attrs['dn']] = $entry; $this->data['SERVERS']['FON'][$attrs['dn']] = $entry;
} }
/* Get logdb server */
$ldap->cd($this->current['BASE']);
$ldap->search("(objectClass=goLogDBServer)");
if ($ldap->count()) {
$attrs = $ldap->fetch();
if (!isset($attrs['gosaLogDB'][0])) {
$attrs['gosaLogDB'][0] = "gomon";
}
$this->data['SERVERS']['LOG'] = array(
'SERVER' => $attrs['cn'][0],
'LOGIN' => $attrs['goLogAdmin'][0],
'DB' => $attrs['gosaLogDB'][0],
'PASSWORD' => $attrs['goLogPassword'][0]
);
}
/* Get NFS server lists */ /* Get NFS server lists */
$tmp = array("default"); $tmp = array("default");
$tmp2 = array("default"); $tmp2 = array("default");
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment