diff options
Diffstat (limited to 'perl-install/fs')
-rw-r--r-- | perl-install/fs/format.pm | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/perl-install/fs/format.pm b/perl-install/fs/format.pm index 8198eb5b8..29817d3d2 100644 --- a/perl-install/fs/format.pm +++ b/perl-install/fs/format.pm @@ -20,6 +20,8 @@ B<fs::format> enables to format filesystems. =item %cmds +Commands to format filesystem: + For each filesystem, list: [ package_name, command_to_use, options_to_use ] =cut @@ -46,6 +48,8 @@ my %cmds = ( =item %LABELs +mkfs option to use in order to set the label + label specs. + For each filesystem, list: [ option, max_length, handled_by_mount ] =cut @@ -70,6 +74,8 @@ my %LABELs = ( =item %edit_LABEL +Commands to set the file system label. + For each filesystem, list: [ package, command, option ] If option is defined, run <command> <option> <label> <device> @@ -305,6 +311,12 @@ sub preserve_UUID_after_format { } } +=item after_formatting($part) + +Misc post formating tags (rereading UUID & setting state) + +=cut + sub after_formatting { my ($part) = @_; |