summaryrefslogtreecommitdiffstats
path: root/perl-install/fs/type.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mageia.org>2012-05-23 18:28:40 +0000
committerThierry Vignaud <tv@mageia.org>2012-05-23 18:28:40 +0000
commit45389d3508c3baedcabdea0eef0dea2631f5a9c7 (patch)
tree864e02f47fffbda606df54945450dc026ef1b8b9 /perl-install/fs/type.pm
parent00669b95f6856a63fdafeadecef4ab0023d31d0d (diff)
downloaddrakx-45389d3508c3baedcabdea0eef0dea2631f5a9c7.tar
drakx-45389d3508c3baedcabdea0eef0dea2631f5a9c7.tar.gz
drakx-45389d3508c3baedcabdea0eef0dea2631f5a9c7.tar.bz2
drakx-45389d3508c3baedcabdea0eef0dea2631f5a9c7.tar.xz
drakx-45389d3508c3baedcabdea0eef0dea2631f5a9c7.zip
(call_blkid) use newly introduced get_stdout_raw() to reduce blkid
timeout to 30 seconds (mga#5979)
Diffstat (limited to 'perl-install/fs/type.pm')
-rw-r--r--perl-install/fs/type.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/fs/type.pm b/perl-install/fs/type.pm
index 6318e6804..528804655 100644
--- a/perl-install/fs/type.pm
+++ b/perl-install/fs/type.pm
@@ -273,7 +273,7 @@ sub call_blkid {
my %h = map {
if_(/(.*?)=(.*)/, $1 => $2);
- } run_program::get_stdout('blkid', '2>', '/dev/null', '-o', 'udev', '-p', devices::make($part->{device}));
+ } run_program::get_stdout_raw({ timeout => 30 }, 'blkid', '2>', '/dev/null', '-o', 'udev', '-p', devices::make($part->{device}));
\%h;
}