summaryrefslogtreecommitdiff
path: root/man/blkdeactivate.8_main
Commit message (Collapse)AuthorAgeFilesLines
* man: typography fixesZdenek Kabelac2021-04-191-19/+22
| | | | | | | | Correcting some usage of Bold and Italics (files). Adding some missing SEE ALSO. Fixing missed replaceable paths that are configurable. Be careful about .P in .TP sections - need to use .sp for space line. Use .UR/.UE for URL references.
* man: typographyZdenek Kabelac2021-04-141-27/+54
| | | | | | | | | | | | | | | | | | | | | | | | | | | With to use .TP where it's easy and doesn't change layout (since .HP is marked as deprecated) - but .TP is not always perfetc match. Avoid submitting empty lines to troff and replace them mostly with .P and use '.' at line start to preserve 'visual' presence of empty line while editing man page manually when there is no extra space needed. Fix some markup. Add some missing SEE ALSO section. Drop some white-space at end-of-lines. Improve hyphenation logic so we do not split options. Use '.IP numbers' only with first one the row (others in row automatically derive this value) Use automatic enumeration for .SH titles. Guidelines in-use: https://man7.org/linux/man-pages/man7/groff.7.html https://www.gnu.org/software/groff/manual/html_node/Man-usage.html https://www.gnu.org/software/groff/manual/html_node/Lists-in-ms.html
* blkdeactivate: add support for VDO in blkdeactivate scriptPeter Rajnoha2020-04-091-0/+11
| | | | | | Make it possible to tear down VDO volumes with blkdeactivate if VDO is part of a device stack (and if VDO binary is installed). Also, support optional -o|--vdooptions configfile=file.
* blkdeactivate: cleanupPeter Rajnoha2017-09-221-1/+1
| | | | | Use a different variable for translated name in dm/md_deactivate fn Fix dmraidoption/dmraidoptions in man page.
* blkdeactivate: add blkdeactivate -r wait option to wait for MD ↵Peter Rajnoha2017-09-211-0/+9
| | | | | | | | | | | resync/recovery/reshape The new blkdeactivate -r|mdraidoption wait causes blkdeactivate to wait for any resync/recovery/reshape that is currently in progress before deactivating the device. If this option is used, blkdeactivate calls mdadm -W|--wait before mdadm -S|--stop.
* blkdeactivate: fix --{dm,lvm,mpath}options option name recognitionPeter Rajnoha2017-09-211-3/+3
| | | | | | There was a typo in blkdeactivate --dmoption/--lvmoption/mpathoption, it had missing "s" at the end and it was not recognized properly, only short names for the options (-d/-l/-m).
* man-generator/man/help: simplify hyphen escapingHeinz Mauelshagen2017-03-271-27/+27
| | | | | | | | | | | | | | | | | | | | | | | | | Commits a29bb6a14b5e920092495fb9a1623e527d22daac ... 5c199d99f4dc9911d62673baba7643ea649ffe64 narrowed down on addressing the escaping of hyphens in the dynamic creation of manuals whilst avoiding them in creating help texts. This lead to a sequence of slipping through hyphens adrressed by additional patches in aforementioned commit series. On the other hand, postprocessing dynamically man-generator created and statically provided manuals catches all hyphens in need of escaping. Changes: - revert the above commits whilst keeping man-generator streamlining and the detection of any '\' when generating help texts in order to avoid escapes to slip in - Dynamically escape hyphens in manaual pages using sed(1) in the respective Makefile targets - remove any manually added escaping on hyphens from any static manual sources or headers
* man: escape all single '-'Heinz Mauelshagen2017-03-241-8/+8
|
* man: Adjust some wording and update examples style.Alasdair G Kergon2017-03-141-31/+40
|
* man: Revise internal man page generation process.Alasdair G Kergon2017-03-141-0/+105
For each section 8 man page, a .8_gen file is created from one of: .8_main - Old-style man page - content used directly .8_des and .8_end - Description and end section of a generated page .8_pregen - Pre-generated page used if the generator fails Other man sections are not generated and use the suffix .5_main or .7_main. Developers should use 'make generate' to regenerate the .8_pregen files.