summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install')
-rw-r--r--perl-install/install_steps_interactive.pm6
-rwxr-xr-xperl-install/standalone/draknet2
2 files changed, 3 insertions, 5 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm
index b4b4a122e..010abf961 100644
--- a/perl-install/install_steps_interactive.pm
+++ b/perl-install/install_steps_interactive.pm
@@ -515,10 +515,8 @@ such as ``mybox.mylab.myco.com''."),
$o->pppConfig;
}
#- (dam's)
- if (!$::beginner && $o->ask_yesorno([ _("Modem Configuration") ],
- _("Do you want to configure a ISDN connection for your system?"), 0)) {
-# netconnect::detect_isdn($o->{prefix}, $o->{isdn}, $o, bool($o->{pcmcia}));
- }
+ $o->{netcnx} ||= {};
+ netconnect::intro($o->{prefix}, $o->{netcnx}, $o, bool($o->{pcmcia}));
}
sub configureNetworkIntf {
diff --git a/perl-install/standalone/draknet b/perl-install/standalone/draknet
index 936836002..2720a0925 100755
--- a/perl-install/standalone/draknet
+++ b/perl-install/standalone/draknet
@@ -19,7 +19,7 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-use lib qw (/usr/lib/libDrakX); #..(/usr/lib/libDrakX);
+use lib qw (..); #(/usr/lib/libDrakX);
use interactive;
use netconnect;