summaryrefslogtreecommitdiffstats
path: root/inc/event.inc.php
diff options
context:
space:
mode:
Diffstat (limited to 'inc/event.inc.php')
-rw-r--r--inc/event.inc.php22
1 files changed, 0 insertions, 22 deletions
diff --git a/inc/event.inc.php b/inc/event.inc.php
index 16e5323a..e5ade41b 100644
--- a/inc/event.inc.php
+++ b/inc/event.inc.php
@@ -41,7 +41,6 @@ class Event
// Tasks: fire away
$mountStatus = false;
$mountId = Trigger::mount();
- $ldadpId = Trigger::ldadp();
$ipxeId = Trigger::ipxe();
// Check status of all tasks
@@ -53,17 +52,6 @@ class Event
$mountStatus = Taskmanager::waitComplete($mountId, 5000);
}
- // LDAP AD Proxy
- if ($ldadpId === false) {
- EventLog::failure('Cannot start LDAP-AD-Proxy: Taskmanager unreachable!');
- $everythingFine = false;
- } else {
- $res = Taskmanager::waitComplete($ldadpId, 5000);
- if (Taskmanager::isFailed($res)) {
- EventLog::failure('Starting LDAP-AD-Proxy failed', $res['data']['messages']);
- $everythingFine = false;
- }
- }
// Primary IP address
if (!$autoIp) {
EventLog::failure("The server's IP address could not be determined automatically, and there is no valid address configured.");
@@ -116,15 +104,5 @@ class Event
}
}
- /**
- * The activated configuration changed.
- */
- public static function activeConfigChanged()
- {
- $task = Trigger::ldadp();
- if ($task === false)
- return;
- TaskmanagerCallback::addCallback($task, 'ldadpStartup');
- }
}