From aa370627b211a51dc46891cfa4b6e3d2ef3e52db Mon Sep 17 00:00:00 2001
From: mcramer <m.cramer@pixcept.de>
Date: Tue, 16 Jul 2013 10:45:17 -0400
Subject: [PATCH] - Fixed FS#2924 - the month will not set automatically in the autoresponder by click now   Along with this fixed some display problems with the combo boxes introduced in 3.0.5.   Some fields were not correctly displayed with the predefined values if value and text of the underlying option element differ.

---
 server/plugins-available/network_settings_plugin.inc.php |   15 ++++++++++++---
 1 files changed, 12 insertions(+), 3 deletions(-)

diff --git a/server/plugins-available/network_settings_plugin.inc.php b/server/plugins-available/network_settings_plugin.inc.php
index 16b553b..8355d9e 100644
--- a/server/plugins-available/network_settings_plugin.inc.php
+++ b/server/plugins-available/network_settings_plugin.inc.php
@@ -79,8 +79,12 @@
 		$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 &&
+		   $server_config['ip_address'] != '0.0.0.0' && 
+		   $server_config['gateway'] != '0.0.0.0') {
 			
 			if (is_file('/etc/debian_version')) 
 			{
@@ -238,7 +242,12 @@
 			}
 			
 		} else {
-			$app->log('Network configuration disabled in server settings.',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);
+			}
 		}
 		
 	}

--
Gitblit v1.9.1