diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2020-02-14 15:29:30 +0100 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2020-03-18 11:51:41 +0100 |
commit | 8974a1c84810d773e015ec6ad7e92e975c579733 (patch) | |
tree | 4ba2ba5723f6f19afb625b27716b0a194660774e /perl-install/fs/get.pm | |
parent | 9e70a6d5e73b6972c89c6c1a7d611f9131dc2892 (diff) | |
download | drakx-8974a1c84810d773e015ec6ad7e92e975c579733.tar drakx-8974a1c84810d773e015ec6ad7e92e975c579733.tar.gz drakx-8974a1c84810d773e015ec6ad7e92e975c579733.tar.bz2 drakx-8974a1c84810d773e015ec6ad7e92e975c579733.tar.xz drakx-8974a1c84810d773e015ec6ad7e92e975c579733.zip |
partially podify fs::*
Diffstat (limited to 'perl-install/fs/get.pm')
-rw-r--r-- | perl-install/fs/get.pm | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/perl-install/fs/get.pm b/perl-install/fs/get.pm index a46a30b09..00c807738 100644 --- a/perl-install/fs/get.pm +++ b/perl-install/fs/get.pm @@ -11,6 +11,17 @@ use fs; use common; use log; + +=head1 SYNOPSYS + +B<fs::get> + +=head1 Functions + +=over + +=cut + sub empty_all_hds() { { hds => [], lvms => [], raids => [], dmcrypts => [], loopbacks => [], raw_hds => [], nfss => [], smbs => [], davs => [], special => [] }; } @@ -51,7 +62,12 @@ sub hds { (@{$all_hds->{hds}}, @{$all_hds->{lvms}}); } -#- get all normal partition. +=item hds_fstab(@hds) + +Get all normal partition. + +=cut + sub hds_fstab { map { partition_table::get_normal_parts($_) } @_; } @@ -165,4 +181,8 @@ sub mntpoint_prefixed { $::prefix . $part->{mntpoint}; } +=back + +=cut + 1; |