1 |
chrissn |
1.1 |
diff -urN e-smith-base-5.8.0.old/root/usr/share/perl5/vendor_perl/esmith/console/configure.pm e-smith-base-5.8.0/root/usr/share/perl5/vendor_perl/esmith/console/configure.pm |
2 |
|
|
--- e-smith-base-5.8.0.old/root/usr/share/perl5/vendor_perl/esmith/console/configure.pm 2020-11-24 03:40:59.906485461 +0000 |
3 |
|
|
+++ e-smith-base-5.8.0/root/usr/share/perl5/vendor_perl/esmith/console/configure.pm 2020-11-24 03:42:25.743567728 +0000 |
4 |
|
|
@@ -2031,7 +2031,10 @@ |
5 |
|
|
|
6 |
|
|
sleep(600); |
7 |
|
|
} |
8 |
|
|
- ($rc, $choice) = $console->yesno_page |
9 |
|
|
+ |
10 |
|
|
+ unless ($self->{bootstrap}) |
11 |
|
|
+ { |
12 |
|
|
+ ($rc, $choice) = $console->yesno_page |
13 |
|
|
( |
14 |
|
|
title => gettext("Activate configuration changes"), |
15 |
|
|
text => |
16 |
|
|
@@ -2039,8 +2042,10 @@ |
17 |
|
|
"\n\n" . |
18 |
|
|
gettext("Do you wish to activate your changes?"), |
19 |
|
|
); |
20 |
|
|
+ |
21 |
|
|
+ return unless ($rc == 0); |
22 |
|
|
+ } |
23 |
|
|
} |
24 |
|
|
- return unless ($rc == 0); |
25 |
|
|
|
26 |
|
|
#------------------------------------------------------------ |
27 |
|
|
SAVE_CONFIG: |