diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2004-03-11 11:12:21 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2004-03-11 11:12:21 +0000 |
commit | 5183192cb202b5c72f1ee9808af7a257bc7a9066 (patch) | |
tree | 0deb2a7913059b9ab2578a48ed311f8007d53a72 /perl-install | |
parent | e00384548a6d57732c0ef409a30a921c24b0e650 (diff) | |
download | drakx-5183192cb202b5c72f1ee9808af7a257bc7a9066.tar drakx-5183192cb202b5c72f1ee9808af7a257bc7a9066.tar.gz drakx-5183192cb202b5c72f1ee9808af7a257bc7a9066.tar.bz2 drakx-5183192cb202b5c72f1ee9808af7a257bc7a9066.tar.xz drakx-5183192cb202b5c72f1ee9808af7a257bc7a9066.zip |
fix previous button on first step (robert.vojta@qcm.cz, anthill #386)
Diffstat (limited to 'perl-install')
-rwxr-xr-x | perl-install/standalone/drakgw | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/standalone/drakgw b/perl-install/standalone/drakgw index 1383b6302..862dc915f 100755 --- a/perl-install/standalone/drakgw +++ b/perl-install/standalone/drakgw @@ -184,7 +184,7 @@ What would you like to do?"), #- * 1st step: detect/setup step_ask_confirm: -undef $::Wizard_no_previous; +$::Wizard_no_previous = 1; $direct or $in->ask_okcancel(N("Internet Connection Sharing"), N("You are about to configure your computer to share its Internet connection. @@ -198,6 +198,8 @@ Note: you need a dedicated Network Adapter to set up a Local Area Network (LAN). step_detectsetup: +undef $::Wizard_no_previous; + my @configured_devices = map { /ifcfg-(\S+)/ } glob('/etc/sysconfig/network-scripts/ifcfg*'); my %aliased_devices; |