summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install')
-rw-r--r--perl-install/NEWS2
-rw-r--r--perl-install/fs/type.pm2
-rw-r--r--perl-install/install/NEWS2
3 files changed, 5 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS
index 2d7ff73d7..e74b11d29 100644
--- a/perl-install/NEWS
+++ b/perl-install/NEWS
@@ -1,3 +1,5 @@
+- always bypass blkid cache (the cache only includes a subset of the data we need)
+
Version 15.19 - 16 January 2013
- update translations
diff --git a/perl-install/fs/type.pm b/perl-install/fs/type.pm
index 72b7b54e4..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_raw({ timeout => 30 }, 'blkid', '2>', '/dev/null', '-o', 'udev', devices::make($part->{device}));
+ } run_program::get_stdout_raw({ timeout => 30 }, 'blkid', '2>', '/dev/null', '-o', 'udev', '-p', devices::make($part->{device}));
\%h;
}
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS
index dff49cd02..7d1f07f20 100644
--- a/perl-install/install/NEWS
+++ b/perl-install/install/NEWS
@@ -1,3 +1,5 @@
+- always bypass blkid cache (the cache only includes a subset of the data we need)
+
Version 15.20 - 21 January 2013
- use modprobe instead of insmod (mga#8676)