diff options
Diffstat (limited to 'perl-install/fs/get.pm')
| -rw-r--r-- | perl-install/fs/get.pm | 24 | 
1 files changed, 22 insertions, 2 deletions
| diff --git a/perl-install/fs/get.pm b/perl-install/fs/get.pm index 5582cf86e..00c807738 100644 --- a/perl-install/fs/get.pm +++ b/perl-install/fs/get.pm @@ -1,4 +1,4 @@ -package fs::get; # $Id: get.pm 245972 2008-09-18 17:00:11Z pixel $ +package fs::get;  use diagnostics;  use strict; @@ -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 including special ones as found on sparc. +=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; | 
