summaryrefslogtreecommitdiffstats
path: root/etc/inc/config.inc
diff options
context:
space:
mode:
authorChris Buechler <cmb@pfsense.org>2008-02-22 07:27:48 +0000
committerChris Buechler <cmb@pfsense.org>2008-02-22 07:27:48 +0000
commitb41456d0a1d80d954c42750b4e04b3fcb2bac1fe (patch)
tree88627e2041c0db1564bcb10eae9078a1d42c8578 /etc/inc/config.inc
parent4d16b7975720537b68558900f557e9643c01aa3c (diff)
downloadpfsense-b41456d0a1d80d954c42750b4e04b3fcb2bac1fe.zip
pfsense-b41456d0a1d80d954c42750b4e04b3fcb2bac1fe.tar.gz
Don't prompt for OPT assignment if LAN was not assigned. Previous check didn't work because the LAN setup in config.xml isn't relevant to the current interface assignment.
Single interface support Appliance Project
Diffstat (limited to 'etc/inc/config.inc')
-rw-r--r--etc/inc/config.inc65
1 files changed, 33 insertions, 32 deletions
diff --git a/etc/inc/config.inc b/etc/inc/config.inc
index 2f8cffc..361f7b7 100644
--- a/etc/inc/config.inc
+++ b/etc/inc/config.inc
@@ -1510,45 +1510,46 @@ EOD;
$i = 0;
$optif = array();
- if($config['interfaces']['lan'])
- while (1) {
- if ($optif[$i])
- $i++;
- $i1 = $i + 1;
-
- if($config['interfaces']['opt' . $i1]['descr'])
- echo "\nOptional interface {$i1} description found: {$config['interfaces']['opt' . $i1]['descr']}";
-
- echo "\nEnter the Optional {$i1} interface name or 'a' for auto-detection\n" .
- "(or nothing if finished): ";
-
- $optif[$i] = chop(fgets($fp));
-
- if ($optif[$i]) {
- if ($optif[$i] === "a") {
- $ad = autodetect_interface("Optional " . $i1, $fp);
- if ($ad)
- $optif[$i] = $ad;
- else
+ if($lanif <> "") {
+ while (1) {
+ if ($optif[$i])
+ $i++;
+ $i1 = $i + 1;
+
+ if($config['interfaces']['opt' . $i1]['descr'])
+ echo "\nOptional interface {$i1} description found: {$config['interfaces']['opt' . $i1]['descr']}";
+
+ echo "\nEnter the Optional {$i1} interface name or 'a' for auto-detection\n" .
+ "(or nothing if finished): ";
+
+ $optif[$i] = chop(fgets($fp));
+
+ if ($optif[$i]) {
+ if ($optif[$i] === "a") {
+ $ad = autodetect_interface("Optional " . $i1, $fp);
+ if ($ad)
+ $optif[$i] = $ad;
+ else
+ unset($optif[$i]);
+ } else if (!array_key_exists($optif[$i], $iflist)) {
+ echo "\nInvalid interface name '{$optif[$i]}'\n";
unset($optif[$i]);
- } else if (!array_key_exists($optif[$i], $iflist)) {
- echo "\nInvalid interface name '{$optif[$i]}'\n";
+ continue;
+ }
+ } else {
unset($optif[$i]);
- continue;
+ break;
}
- } else {
- unset($optif[$i]);
- break;
}
}
-
+
/* check for double assignments */
$ifarr = array_merge(array($lanif, $wanif), $optif);
-
+
for ($i = 0; $i < (count($ifarr)-1); $i++) {
- for ($j = ($i+1); $j < count($ifarr); $j++) {
- if ($ifarr[$i] == $ifarr[$j]) {
- echo <<<EOD
+ for ($j = ($i+1); $j < count($ifarr); $j++) {
+ if ($ifarr[$i] == $ifarr[$j]) {
+ echo <<<EOD
Error: you cannot assign the same interface name twice!
@@ -1582,7 +1583,7 @@ echo <<<EODD
You have chosen to remove the LAN interface.
-Would you like to remove the IP LAN address and
+Would you like to remove the LAN IP address and
unload the interface now? [y|n]?
EODD;
OpenPOWER on IntegriCloud