diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-06-13 04:33:50 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-06-13 04:33:50 +0000 |
commit | 967d8ec6e7be57b1cdfc4ff1538044bc07b4db53 (patch) | |
tree | 9058f29a529d3b7a9ef15cc0cd5624c0f2f5396f /rescue/guessmounts | |
parent | 4b962e51805bd35269788b7e7fb96b84635651c8 (diff) | |
download | drakx-967d8ec6e7be57b1cdfc4ff1538044bc07b4db53.tar drakx-967d8ec6e7be57b1cdfc4ff1538044bc07b4db53.tar.gz drakx-967d8ec6e7be57b1cdfc4ff1538044bc07b4db53.tar.bz2 drakx-967d8ec6e7be57b1cdfc4ff1538044bc07b4db53.tar.xz drakx-967d8ec6e7be57b1cdfc4ff1538044bc07b4db53.zip |
move functions using /proc/partitions out of fsedit to fs::proc_partitions
Diffstat (limited to 'rescue/guessmounts')
-rwxr-xr-x | rescue/guessmounts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rescue/guessmounts b/rescue/guessmounts index 76aff3b4c..3f3a4e208 100755 --- a/rescue/guessmounts +++ b/rescue/guessmounts @@ -15,7 +15,7 @@ use lib qw(../perl-install /usr/lib/libDrakX); use common; use fs; - +use fs::proc_partitions; my @proc_mounts = fs::read_fstab('', '/proc/mounts'); @@ -36,7 +36,7 @@ mkdir_p($target); my @fstab; my $root; -foreach (devices::read_proc_partitions_raw()) { +foreach (fs::proc_partitions::read_raw()) { my $dev = devices::make($_->{dev}); my $fs = find { |