1 |
slords |
1.1 |
diff -Nur -x '*.orig' -x '*.rej' e-smith-base-4.18.0/root/usr/lib/perl5/site_perl/esmith/console/configure.pm mezzanine_patched_e-smith-base-4.18.0/root/usr/lib/perl5/site_perl/esmith/console/configure.pm |
2 |
|
|
--- e-smith-base-4.18.0/root/usr/lib/perl5/site_perl/esmith/console/configure.pm 2007-01-26 20:56:31.000000000 -0500 |
3 |
|
|
+++ mezzanine_patched_e-smith-base-4.18.0/root/usr/lib/perl5/site_perl/esmith/console/configure.pm 2007-02-22 18:08:48.000000000 -0500 |
4 |
|
|
@@ -2079,20 +2079,11 @@ |
5 |
|
|
$db->set_prop("bootstrap-console", "ForceSave", "no"); |
6 |
|
|
$db->set_prop("bootstrap-console", "Run", "no"); |
7 |
|
|
|
8 |
|
|
- # XXX-FIXME |
9 |
|
|
- # We call whiptail directly (rather than through the screen function) |
10 |
|
|
- # as we don't want the --clear parameter passed by screen(). |
11 |
|
|
- # Appropriate magic can clean this up. |
12 |
|
|
- |
13 |
|
|
- system( |
14 |
|
|
- "/usr/bin/whiptail", |
15 |
|
|
- "--backtitle", $console->backtitle, |
16 |
|
|
- "--title", gettext("Activating configuration settings"), |
17 |
|
|
- "--infobox", gettext("Please stand by while your configuration settings are activated ..."), |
18 |
|
|
- 8, esmith::console::SCREEN_COLUMNS, |
19 |
|
|
+ $console->infobox( |
20 |
|
|
+ title => gettext("Activating configuration settings"), |
21 |
|
|
+ text => gettext("Please stand by while your configuration settings are activated ..."), |
22 |
|
|
); |
23 |
|
|
|
24 |
|
|
- |
25 |
|
|
if ($bootstrapConsole eq "yes") |
26 |
|
|
{ |
27 |
|
|
system("/sbin/e-smith/signal-event", "bootstrap-console-save"); |
28 |
|
|
diff -Nur -x '*.orig' -x '*.rej' e-smith-base-4.18.0/root/usr/lib/perl5/site_perl/esmith/console/save_config.pm mezzanine_patched_e-smith-base-4.18.0/root/usr/lib/perl5/site_perl/esmith/console/save_config.pm |
29 |
|
|
--- e-smith-base-4.18.0/root/usr/lib/perl5/site_perl/esmith/console/save_config.pm 2007-02-22 18:12:44.000000000 -0500 |
30 |
|
|
+++ mezzanine_patched_e-smith-base-4.18.0/root/usr/lib/perl5/site_perl/esmith/console/save_config.pm 2007-02-22 18:08:08.000000000 -0500 |
31 |
|
|
@@ -22,17 +22,9 @@ |
32 |
|
|
$db->set_prop("bootstrap-console", "ForceSave", "no"); |
33 |
|
|
$db->set_prop("bootstrap-console", "Run", "no"); |
34 |
|
|
|
35 |
|
|
- # XXX-FIXME |
36 |
|
|
- # We call whiptail directly (rather than through the screen function) |
37 |
|
|
- # as we don't want the --clear parameter passed by screen(). |
38 |
|
|
- # Appropriate magic can clean this up. |
39 |
|
|
- |
40 |
|
|
- system( |
41 |
|
|
- "/usr/bin/whiptail", |
42 |
|
|
- "--backtitle", $console->backtitle, |
43 |
|
|
- "--title", gettext("Activating configuration settings"), |
44 |
|
|
- "--infobox", gettext("Please standby while your configuration settings are activated ..."), |
45 |
|
|
- 8, esmith::console::SCREEN_COLUMNS, |
46 |
|
|
+ $console->infobox( |
47 |
|
|
+ title => gettext("Activating configuration settings"), |
48 |
|
|
+ text => gettext("Please standby while your configuration settings are activated ..."), |
49 |
|
|
); |
50 |
|
|
|
51 |
|
|
system("/sbin/e-smith/signal-event", 'bootstrap-console-save'); |