summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2002-07-09 19:48:29 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2002-07-09 19:48:29 +0000
commit87135b36387a91c04b5020fbfeadcfb5f27a1433 (patch)
treeffceb9a758b66f5d7904b22721e1b9c4a3bd2349
parent4779d899e88b66177a18e3f762230dd543f27258 (diff)
downloaddrakx-backup-do-not-use-87135b36387a91c04b5020fbfeadcfb5f27a1433.tar
drakx-backup-do-not-use-87135b36387a91c04b5020fbfeadcfb5f27a1433.tar.gz
drakx-backup-do-not-use-87135b36387a91c04b5020fbfeadcfb5f27a1433.tar.bz2
drakx-backup-do-not-use-87135b36387a91c04b5020fbfeadcfb5f27a1433.tar.xz
drakx-backup-do-not-use-87135b36387a91c04b5020fbfeadcfb5f27a1433.zip
- configurator got displayed
- move timeout around configurator asking (still not 100% ok)
-rwxr-xr-xperl-install/standalone/service_harddrake38
1 files changed, 19 insertions, 19 deletions
diff --git a/perl-install/standalone/service_harddrake b/perl-install/standalone/service_harddrake
index c99ab907e..1235ae539 100755
--- a/perl-install/standalone/service_harddrake
+++ b/perl-install/standalone/service_harddrake
@@ -5,12 +5,9 @@ use lib qw(/usr/lib/libDrakX);
use strict;
use standalone; #- warning, standalone must be loaded very first, for 'explanations'
-
use MDK::Common;
use POSIX;
-
use interactive;
-
use harddrake::data;
use Data::Dumper;
@@ -28,16 +25,10 @@ my $str = '#!/usr/bin/perl -w
#
';
-my $in = 'interactive'->vnew('su');
-my $w = $in->wait_message(_("Please wait"), _("Hardware probing in progress"));
-
# first run ? if not read old hw config
my $previous_config = -f $last_boot_config ? do $last_boot_config : {};
-my %config;
-
-$SIG{SIGALRM} = sub { die "time out elapsed"; };
-alarm 200;
+my (%config, $in);
# For each hw, class, detect device, compare and offer to reconfigure if
# needed
@@ -78,23 +69,32 @@ foreach (@harddrake::data::tree) {
@added || @was_removed or next;
next unless (-x $configurator);
- undef $w;
- if ($in->ask_okcancel("Hardware changes in $Ident class",
- $msg . "\nDo you want to run the appropriate config tool ?", 1)) {
-
- if (my $pid = fork) {
+ my $res;
+ $SIG{ALRM} = sub { die "TIMED OUT\n" };
+ undef $@;
+ eval {
+ alarm (5);
+ $in = 'interactive'->vnew('su') unless defined $in;
+ $res = $in->ask_okcancel("Hardware changes in $Ident class (5 seconds to answer)",
+ $msg . "\nDo you want to run the appropriate config tool ?", 1)
+ or $in->wait_message(_('Please wait'), _('Hardware probing in progress'));
+ alarm (0);
+ };
+
+ next unless ($@); # timed out
+ print "CANCELED\n" if $res;
+ next unless ($res); # canceled
+ if (my $pid = fork) {
POSIX::wait();
} else {
- exec($configurator) or die "$configurator missing\n";
+ exec("$configurator 2>/dev/null") or die "$configurator missing\n";
}
- }
}
-alarm 0;
-
$Data::Dumper::Terse = 1; # don't output names where feasible
$Data::Dumper::Purity = 1; # fill in the holes for eval
# output new hw config
output("$last_boot_config", $str . Dumper(\%config) . ";\n");
+$in->exit(0) if defined $in; exit 0;