diff options
author | Colin Guthrie <colin@mageia.org> | 2013-02-14 14:50:43 +0000 |
---|---|---|
committer | Colin Guthrie <colin@mageia.org> | 2013-02-14 14:50:43 +0000 |
commit | 65bfa9c814fdcfd4ca7718b3111d2e0598dd9f71 (patch) | |
tree | d3304a565c21e615d6e8f9294b19d1177eb71f90 /perl-install/fs | |
parent | c42a60afc3e2c154f133f2b0b02f4f7cb8432717 (diff) | |
download | drakx-backup-do-not-use-65bfa9c814fdcfd4ca7718b3111d2e0598dd9f71.tar drakx-backup-do-not-use-65bfa9c814fdcfd4ca7718b3111d2e0598dd9f71.tar.gz drakx-backup-do-not-use-65bfa9c814fdcfd4ca7718b3111d2e0598dd9f71.tar.bz2 drakx-backup-do-not-use-65bfa9c814fdcfd4ca7718b3111d2e0598dd9f71.tar.xz drakx-backup-do-not-use-65bfa9c814fdcfd4ca7718b3111d2e0598dd9f71.zip |
(call_blkid) add a code comment about blkid -p to prevent accidental revert in the future
Diffstat (limited to 'perl-install/fs')
-rw-r--r-- | perl-install/fs/type.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/perl-install/fs/type.pm b/perl-install/fs/type.pm index 528804655..174cbe222 100644 --- a/perl-install/fs/type.pm +++ b/perl-install/fs/type.pm @@ -271,6 +271,7 @@ sub fs_type_from_magic { sub call_blkid { my ($part) = @_; + # IMPORTANT: Always use the -p argument with blkid. See r7324 commit msg my %h = map { if_(/(.*?)=(.*)/, $1 => $2); } run_program::get_stdout_raw({ timeout => 30 }, 'blkid', '2>', '/dev/null', '-o', 'udev', '-p', devices::make($part->{device})); |