From 5712a61048ae34365a1a8977d3fa04ddaa1b80c1 Mon Sep 17 00:00:00 2001 From: mcramer <m.cramer@pixcept.de> Date: Thu, 16 Aug 2012 15:14:34 -0400 Subject: [PATCH] Implemented FS#1938 - Add functions to manage password protected folders to remote api --- server/plugins-available/network_settings_plugin.inc.php | 12 +++++++++--- 1 files changed, 9 insertions(+), 3 deletions(-) diff --git a/server/plugins-available/network_settings_plugin.inc.php b/server/plugins-available/network_settings_plugin.inc.php index f9c01da..b711139 100644 --- a/server/plugins-available/network_settings_plugin.inc.php +++ b/server/plugins-available/network_settings_plugin.inc.php @@ -79,8 +79,9 @@ $app->uses('getconf'); $server_config = $app->getconf->get_server_config($conf['server_id'], 'server'); - // Configure the debian network card settings - if($server_config['auto_network_configuration'] == 'y') { + //* Configure the debian network card settings. + //* Dont configure + if($server_config['auto_network_configuration'] == 'y' && $data['mirrored'] == false) { if (is_file('/etc/debian_version')) { @@ -238,7 +239,12 @@ } } else { - $app->log('Network configuration disabled in server settings.',LOGLEVEL_WARN); + 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); + } } } -- Gitblit v1.9.1