summaryrefslogtreecommitdiffstats
path: root/perl-install/install/install2.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mageia.org>2012-05-23 18:28:12 +0000
committerThierry Vignaud <tv@mageia.org>2012-05-23 18:28:12 +0000
commit93405ff7d31d80226cd3cd791a3ae772da5e46e0 (patch)
tree823a49abf7afbd06ab334e859713e42242fd130f /perl-install/install/install2.pm
parent0eae122280013b603efa9fd37474d0603b56ff1b (diff)
downloaddrakx-93405ff7d31d80226cd3cd791a3ae772da5e46e0.tar
drakx-93405ff7d31d80226cd3cd791a3ae772da5e46e0.tar.gz
drakx-93405ff7d31d80226cd3cd791a3ae772da5e46e0.tar.bz2
drakx-93405ff7d31d80226cd3cd791a3ae772da5e46e0.tar.xz
drakx-93405ff7d31d80226cd3cd791a3ae772da5e46e0.zip
always load fs::mount
rationale: its nearly always needed anyway and it'll be always needed afer next commit
Diffstat (limited to 'perl-install/install/install2.pm')
-rw-r--r--perl-install/install/install2.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install/install2.pm b/perl-install/install/install2.pm
index 065c88515..6c33fbf2b 100644
--- a/perl-install/install/install2.pm
+++ b/perl-install/install/install2.pm
@@ -26,6 +26,7 @@ use any;
use log;
use fs;
use fs::any;
+use fs::mount;
#-#######################################################################################
#-$O
@@ -316,7 +317,6 @@ sub start_udev() {
sub stop_udev() {
kill 15, fuzzy_pidofs('udevd');
sleep(2);
- require fs::mount;
fs::mount::umount($_) foreach '/dev/pts', '/dev/shm', '/run';
}