diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2020-04-23 14:54:21 +0200 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2020-04-23 15:08:39 +0200 |
commit | 135fdcc5db5dbb7a6169a60f2ef845c6da5d3524 (patch) | |
tree | 26a31504d0d180f82dd443fb8c0cb397b98aedc7 /perl-install | |
parent | a8ff1e151d07721ab03ea9248baaadd007eb2301 (diff) | |
download | drakx-135fdcc5db5dbb7a6169a60f2ef845c6da5d3524.tar drakx-135fdcc5db5dbb7a6169a60f2ef845c6da5d3524.tar.gz drakx-135fdcc5db5dbb7a6169a60f2ef845c6da5d3524.tar.bz2 drakx-135fdcc5db5dbb7a6169a60f2ef845c6da5d3524.tar.xz drakx-135fdcc5db5dbb7a6169a60f2ef845c6da5d3524.zip |
explain more
Diffstat (limited to 'perl-install')
-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) = @_; |