diff options
author | Ermal <eri@pfsense.org> | 2011-02-08 14:15:46 +0000 |
---|---|---|
committer | Ermal <eri@pfsense.org> | 2011-02-08 14:15:46 +0000 |
commit | 9552450897319ab9e8810bd1a487d2936122c2d3 (patch) | |
tree | d6706a143d0f207a74d787092c961948dd5f53af /etc/inc/config.console.inc | |
parent | 456661378d3f43b220427e939db9cb0bd9773dc0 (diff) | |
download | pfsense-9552450897319ab9e8810bd1a487d2936122c2d3.zip pfsense-9552450897319ab9e8810bd1a487d2936122c2d3.tar.gz |
Resolves #1265. Show the interfaces in the same order requested during assignment on console.
Diffstat (limited to 'etc/inc/config.console.inc')
-rw-r--r-- | etc/inc/config.console.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/inc/config.console.inc b/etc/inc/config.console.inc index 9005b79..d1eb18a 100644 --- a/etc/inc/config.console.inc +++ b/etc/inc/config.console.inc @@ -303,9 +303,9 @@ EOD; echo "\nThe interfaces will be assigned as follows: \n\n"; + echo "WAN -> " . $wanif . "\n"; if ($lanif != "") echo "LAN -> " . $lanif . "\n"; - echo "WAN -> " . $wanif . "\n"; for ($i = 0; $i < count($optif); $i++) { echo "OPT" . ($i+1) . " -> " . $optif[$i] . "\n"; } |