diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2003-01-16 12:22:45 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2003-01-16 12:22:45 +0000 |
commit | 2bbb0e8b88b39676894724ffa33017ffaf4b65c5 (patch) | |
tree | 75cf97b2fc11942e9f1a4b80cfefabe262feb00b | |
parent | 05dbdbc0d251aac338679e7b15a3d068e327fcb7 (diff) | |
download | drakx-backup-do-not-use-2bbb0e8b88b39676894724ffa33017ffaf4b65c5.tar drakx-backup-do-not-use-2bbb0e8b88b39676894724ffa33017ffaf4b65c5.tar.gz drakx-backup-do-not-use-2bbb0e8b88b39676894724ffa33017ffaf4b65c5.tar.bz2 drakx-backup-do-not-use-2bbb0e8b88b39676894724ffa33017ffaf4b65c5.tar.xz drakx-backup-do-not-use-2bbb0e8b88b39676894724ffa33017ffaf4b65c5.zip |
perl_checker fixes
-rwxr-xr-x | perl-install/standalone/service_harddrake | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/perl-install/standalone/service_harddrake b/perl-install/standalone/service_harddrake index fb440aebc..a03cf0623 100755 --- a/perl-install/standalone/service_harddrake +++ b/perl-install/standalone/service_harddrake @@ -16,7 +16,7 @@ my $last_boot_config = $hw_sysconfdir."/previous_hw"; $last_boot_config .= '_X11' if $invert_do_it; # first run ? if not read old hw config -my $previous_config = (-f $last_boot_config && -s $last_boot_config) ? retrieve($last_boot_config) : {}; +my $previous_config = -f $last_boot_config && -s $last_boot_config ? Storable::retrieve($last_boot_config) : {}; $previous_config = $$previous_config if ref($previous_config) !~ /HASH/; my (%config, $wait); my $in = interactive->vnew; @@ -51,11 +51,11 @@ foreach (@harddrake::data::tree) { next unless -x $configurator; my ($pid, $no); $SIG{ALRM} = sub { $no = 1; kill 15, $pid }; - unless ($pid = fork) { + unless ($pid = fork()) { exec("/usr/share/harddrake/confirm 'Hardware changes in $Ident class ($timeout seconds to answer)' '" . $msg . "Do you want to run the appropriate config tool ?'"); } alarm($timeout); - wait; + wait(); my $res = $?; alarm(0); if ($no) { @@ -63,13 +63,13 @@ foreach (@harddrake::data::tree) { undef $wait; $wait = $in->wait_message(N("Please wait"), N("Hardware probing in progress")); } elsif ($res) { - if (my $pid = fork) { - wait; + if (fork()) { + wait(); } else { exec("$configurator 2>/dev/null") or die "$configurator missing\n" } } } # output new hw config -log::explanations "created file $last_boot_config"; -store \%config, $last_boot_config; +log::explanations("created file $last_boot_config"); +Storable::store \%config, $last_boot_config; $in->exit(0); |