diff options
Diffstat (limited to 'perl-install/network/netconnect.pm')
-rw-r--r-- | perl-install/network/netconnect.pm | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/perl-install/network/netconnect.pm b/perl-install/network/netconnect.pm index ec90bc116..10d3e1a3a 100644 --- a/perl-install/network/netconnect.pm +++ b/perl-install/network/netconnect.pm @@ -813,11 +813,20 @@ Modifying the fields below will override this configuration."), type => "yesorno", post => sub { my ($res) = @_; - die 'wizcancel' if !$res; - return "lan_protocol"; + return $res ? "lan_protocol" : "alrd_end"; } }, + + alrd_end => + { + name => N("Congratulations, the network and Internet configuration is finished. + +"), + end => 1, + }, + + lan_protocol => { pre => sub { |