summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <thierry.vignaud@gmail.com>2017-01-30 10:43:06 +0100
committerMartin Whitaker <mageia@martin-whitaker.me.uk>2017-02-12 11:54:53 +0000
commitbd4c2c2f5c8b92e1cd0e72ba5471dd526c535279 (patch)
tree17a8dd5b202a384e19f5c1670965d54e6a4e5138
parentb1e9ed8a077baf02f1a0be5959c4b39069bf7183 (diff)
downloaddrakx-bd4c2c2f5c8b92e1cd0e72ba5471dd526c535279.tar
drakx-bd4c2c2f5c8b92e1cd0e72ba5471dd526c535279.tar.gz
drakx-bd4c2c2f5c8b92e1cd0e72ba5471dd526c535279.tar.bz2
drakx-bd4c2c2f5c8b92e1cd0e72ba5471dd526c535279.tar.xz
drakx-bd4c2c2f5c8b92e1cd0e72ba5471dd526c535279.zip
explicitly probe LVMs in live install
-rw-r--r--perl-install/lvm.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/lvm.pm b/perl-install/lvm.pm
index ffdba0b3e..bf212bd6f 100644
--- a/perl-install/lvm.pm
+++ b/perl-install/lvm.pm
@@ -58,7 +58,7 @@ Loads LVM modules and scan VGs (if in installer, not in standalone tool).
sub init() {
devices::init_device_mapper();
- detect_during_install() if $::isInstall;
+ detect_during_install() if $::isInstall || $::isLiveInstall;
1;
}