summaryrefslogtreecommitdiffstats
path: root/perl-install/network/netconnect.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/network/netconnect.pm')
-rw-r--r--perl-install/network/netconnect.pm5
1 files changed, 5 insertions, 0 deletions
diff --git a/perl-install/network/netconnect.pm b/perl-install/network/netconnect.pm
index f9d7c241c..94c9d553d 100644
--- a/perl-install/network/netconnect.pm
+++ b/perl-install/network/netconnect.pm
@@ -1158,6 +1158,11 @@ N("Last but not least you can also type in your DNS server IP addresses."),
post => sub {
my ($res) = @_;
$netc->{at_boot} = $res;
+ $res = bool2yesno($res);
+ substInFile { s/^ONBOOT.*\n//; $_ .= qq(ONBOOT=$res\n) if eof }
+ $netc->{internet_cnx_choice} eq 'adsl' ?
+ "$::prefix/etc/sysconfig/network-scripts/ifcfg-ppp0" :
+ "$::prefix/etc/sysconfig/network-scripts/ifcfg-ippp0";
return $after_start_on_boot_step->();
},
},