diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2004-02-13 23:28:23 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2004-02-13 23:28:23 +0000 |
commit | 23482fe690315d2d15105eaffe9b1f283cbd6cfe (patch) | |
tree | 432d09e612bf79916cd987d32471d15e6a068f59 /perl-install | |
parent | a95fac023d75dba8c523215e2bd65e85de8285e3 (diff) | |
download | drakx-backup-do-not-use-23482fe690315d2d15105eaffe9b1f283cbd6cfe.tar drakx-backup-do-not-use-23482fe690315d2d15105eaffe9b1f283cbd6cfe.tar.gz drakx-backup-do-not-use-23482fe690315d2d15105eaffe9b1f283cbd6cfe.tar.bz2 drakx-backup-do-not-use-23482fe690315d2d15105eaffe9b1f283cbd6cfe.tar.xz drakx-backup-do-not-use-23482fe690315d2d15105eaffe9b1f283cbd6cfe.zip |
by default do not start connection at boot for modems (#7705)
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/network/netconnect.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/perl-install/network/netconnect.pm b/perl-install/network/netconnect.pm index 77bfd319f..6da6100d7 100644 --- a/perl-install/network/netconnect.pm +++ b/perl-install/network/netconnect.pm @@ -1065,6 +1065,7 @@ You may also enter the IP address of the gateway if you have one."), }, name => N("Do you want to start the connection at boot?"), type => "yesorno", + default => sub { ($type eq 'modem' ? 'no' : 'yes') }, post => sub { my ($res) = @_; $netc->{at_boot} = $res; |