diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-09-06 08:28:47 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-09-06 08:28:47 +0000 |
commit | 92076d36e453a5f29cc822615133e6ff53c930b3 (patch) | |
tree | 98218b08f83c59aaefd3235a98d2749191a4a85f | |
parent | 9ae2f92117954eae8ce5a07889069631c48fb49a (diff) | |
download | drakx-92076d36e453a5f29cc822615133e6ff53c930b3.tar drakx-92076d36e453a5f29cc822615133e6ff53c930b3.tar.gz drakx-92076d36e453a5f29cc822615133e6ff53c930b3.tar.bz2 drakx-92076d36e453a5f29cc822615133e6ff53c930b3.tar.xz drakx-92076d36e453a5f29cc822615133e6ff53c930b3.zip |
some more logging
-rw-r--r-- | perl-install/fsedit.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/perl-install/fsedit.pm b/perl-install/fsedit.pm index a9d6be785..37c6b7dd9 100644 --- a/perl-install/fsedit.pm +++ b/perl-install/fsedit.pm @@ -75,6 +75,8 @@ sub lvms { my ($all_hds) = @_; my @pvs = grep { isRawLVM($_) } fs::get::fstab($all_hds) or return; + log::l("looking for vgs in " . join(' ', map { $_->{device} } @pvs)); + #- otherwise vgscan won't find them devices::make($_->{device}) foreach @pvs; require lvm; |