diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2008-01-29 07:42:22 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2008-01-29 07:42:22 +0000 |
commit | 33e59650fe44d4678273e68e89a981d88afdbcc6 (patch) | |
tree | 36f63c2512bff839140d2b9f2a297470b3198751 /perl-install/fs | |
parent | 6e87d0c4698ef0ec2403d81c5d4422a0384e2857 (diff) | |
download | drakx-33e59650fe44d4678273e68e89a981d88afdbcc6.tar drakx-33e59650fe44d4678273e68e89a981d88afdbcc6.tar.gz drakx-33e59650fe44d4678273e68e89a981d88afdbcc6.tar.bz2 drakx-33e59650fe44d4678273e68e89a981d88afdbcc6.tar.xz drakx-33e59650fe44d4678273e68e89a981d88afdbcc6.zip |
vol_id failures ("unknown volume type") are too verbose
Diffstat (limited to 'perl-install/fs')
-rw-r--r-- | perl-install/fs/type.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/fs/type.pm b/perl-install/fs/type.pm index b7fef0771..166e079a9 100644 --- a/perl-install/fs/type.pm +++ b/perl-install/fs/type.pm @@ -273,7 +273,7 @@ sub call_vol_id { my %h = map { if_(/(.*?)=(.*)/, $1 => $2); - } run_program::get_stdout('vol_id', devices::make($part->{device})); + } run_program::get_stdout('vol_id', '2>', '/dev/null', devices::make($part->{device})); \%h; } |