diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-07-24 22:39:28 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-07-24 22:39:28 +0000 |
commit | b60c0cb8f67d745626fec6f0c8540818f24e91a6 (patch) | |
tree | 783189547888703c391b1719cf9ceaacb1e1aa63 /perl-install/fs.pm | |
parent | 0a96d505550060312a1cd9a04a9ae9bf23ebdaa2 (diff) | |
download | drakx-b60c0cb8f67d745626fec6f0c8540818f24e91a6.tar drakx-b60c0cb8f67d745626fec6f0c8540818f24e91a6.tar.gz drakx-b60c0cb8f67d745626fec6f0c8540818f24e91a6.tar.bz2 drakx-b60c0cb8f67d745626fec6f0c8540818f24e91a6.tar.xz drakx-b60c0cb8f67d745626fec6f0c8540818f24e91a6.zip |
move to MDK::Common, bool->to_bool
Diffstat (limited to 'perl-install/fs.pm')
-rw-r--r-- | perl-install/fs.pm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/perl-install/fs.pm b/perl-install/fs.pm index 79929f699..36e9f6381 100644 --- a/perl-install/fs.pm +++ b/perl-install/fs.pm @@ -3,7 +3,8 @@ package fs; # $Id$ use diagnostics; use strict; -use common qw(:common :file :system :functional); +use MDK::Common::System; +use common; use log; use devices; use partition_table qw(:types); @@ -340,7 +341,7 @@ sub df { return; } } - my (undef, $free) = common::df($dir); + my (undef, $free) = MDK::Common::System::df($dir); if (!$part->{isMounted}) { umount($dir); |