Skip to content
Snippets Groups Projects
Commit e63545f7 authored by tbrehm's avatar tbrehm
Browse files

Improved: FS#2131 - skip network reconfigure requests on mirror servers that...

Improved: FS#2131 - skip network reconfigure requests on mirror servers that are for a different server_id
parent 1bf46212
No related branches found
No related tags found
No related merge requests found
......@@ -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);
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment