From e63545f72d9b7d8177dc67f80a4295a12b4fb5a5 Mon Sep 17 00:00:00 2001 From: tbrehm <t.brehm@ispconfig.org> Date: Thu, 7 Jun 2012 13:03:09 +0000 Subject: [PATCH] Improved: FS#2131 - skip network reconfigure requests on mirror servers that are for a different server_id --- server/plugins-available/network_settings_plugin.inc.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/server/plugins-available/network_settings_plugin.inc.php b/server/plugins-available/network_settings_plugin.inc.php index 2bea30097e..b711139dd1 100644 --- a/server/plugins-available/network_settings_plugin.inc.php +++ b/server/plugins-available/network_settings_plugin.inc.php @@ -239,7 +239,12 @@ class network_settings_plugin { } } else { - $app->log('Network configuration disabled in server settings or server is a mirror server.',LOGLEVEL_DEBUG); + if($data['mirrored'] == true) { + $app->log('Skipping network config request. IP addresses from amster are not configured on the mirror.',LOGLEVEL_DEBUG); + } + if($server_config['auto_network_configuration'] == 'n') { + $app->log('Network configuration disabled in server settings.',LOGLEVEL_DEBUG); + } } } -- GitLab