diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-06-10 04:40:18 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-06-10 04:40:18 +0000 |
commit | 6e230863720c63b6a39a53f3c0a15de771a373d2 (patch) | |
tree | d61f413104635c5a259455c4acbdc6e628650a59 /perl-install/fs/format.pm | |
parent | c130de3109b46c9c0783f9d600c38cea9b5bb46e (diff) | |
download | drakx-6e230863720c63b6a39a53f3c0a15de771a373d2.tar drakx-6e230863720c63b6a39a53f3c0a15de771a373d2.tar.gz drakx-6e230863720c63b6a39a53f3c0a15de771a373d2.tar.bz2 drakx-6e230863720c63b6a39a53f3c0a15de771a373d2.tar.xz drakx-6e230863720c63b6a39a53f3c0a15de771a373d2.zip |
move loopback.pm to fs/loopback.pm
(since it's tightly tight to many fs* things)
Diffstat (limited to 'perl-install/fs/format.pm')
-rw-r--r-- | perl-install/fs/format.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/fs/format.pm b/perl-install/fs/format.pm index ad4e77508..4f0aff353 100644 --- a/perl-install/fs/format.pm +++ b/perl-install/fs/format.pm @@ -6,6 +6,7 @@ use strict; use run_program; use common; use fs::type; +use fs::loopback; use log; my %cmds = ( @@ -46,7 +47,7 @@ sub part { raid::format_part($raids, $part); } elsif (isLoopback($part)) { $wait_message->(N("Creating and formatting file %s", $part->{loopback_file})) if $wait_message; - loopback::format_part($part, $prefix); + fs::loopback::format_part($part, $prefix); } else { $wait_message->(N("Formatting partition %s", $part->{device})) if $wait_message; part_raw($part, $wait_message); |