summaryrefslogtreecommitdiffstats
path: root/perl-install/run_program.pm
diff options
context:
space:
mode:
authorAntoine Ginies <aginies@mandriva.com>2011-01-31 13:29:40 +0000
committerAntoine Ginies <aginies@mandriva.com>2011-01-31 13:29:40 +0000
commitabc15d3a2d2916412e4c2583420f5c37376601b0 (patch)
treea1528e427e45b7e6c80617f3d316b36472ce6ea4 /perl-install/run_program.pm
parent7e11b4fe1eca20de3fdc7495614c015fd030e115 (diff)
downloaddrakx-backup-do-not-use-abc15d3a2d2916412e4c2583420f5c37376601b0.tar
drakx-backup-do-not-use-abc15d3a2d2916412e4c2583420f5c37376601b0.tar.gz
drakx-backup-do-not-use-abc15d3a2d2916412e4c2583420f5c37376601b0.tar.bz2
drakx-backup-do-not-use-abc15d3a2d2916412e4c2583420f5c37376601b0.tar.xz
drakx-backup-do-not-use-abc15d3a2d2916412e4c2583420f5c37376601b0.zip
various fix
Diffstat (limited to 'perl-install/run_program.pm')
-rw-r--r--perl-install/run_program.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/run_program.pm b/perl-install/run_program.pm
index 6f932acf5..796694a80 100644
--- a/perl-install/run_program.pm
+++ b/perl-install/run_program.pm
@@ -76,7 +76,8 @@ sub raw {
$pid;
} else {
my $ok;
- add2hash_($options, { timeout => 10 * 60 });
+ # increase timeout to avoid kvm error
+ add2hash_($options, { timeout => 30 * 60 });
eval {
local $SIG{ALRM} = sub { die "ALARM" };
my $remaining = $options->{timeout} && $options->{timeout} ne 'never' && alarm($options->{timeout});