mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-16 09:55:26 -07:00
renamed mkfs and moved to system/filesystem
This commit is contained in:
parent
2dc59822f7
commit
f4de40fc43
1 changed files with 3 additions and 3 deletions
|
@ -21,7 +21,7 @@
|
||||||
DOCUMENTATION = '''
|
DOCUMENTATION = '''
|
||||||
---
|
---
|
||||||
author: Alexander Bulimov
|
author: Alexander Bulimov
|
||||||
module: mkfs
|
module: filesystem
|
||||||
short_description: Makes file system on block device
|
short_description: Makes file system on block device
|
||||||
description:
|
description:
|
||||||
- This module creates file system.
|
- This module creates file system.
|
||||||
|
@ -46,9 +46,9 @@ options:
|
||||||
- List of options to be passed to mkfs command.
|
- List of options to be passed to mkfs command.
|
||||||
examples:
|
examples:
|
||||||
- description: Create a ext2 filesystem on /dev/sdb1.
|
- description: Create a ext2 filesystem on /dev/sdb1.
|
||||||
code: mkfs fstype=ext2 dev=/dev/sdb1
|
code: filesystem fstype=ext2 dev=/dev/sdb1
|
||||||
- description: Create a ext4 filesystem on /dev/sdb1 and check disk blocks.
|
- description: Create a ext4 filesystem on /dev/sdb1 and check disk blocks.
|
||||||
code: mkfs fstype=ext4 dev=/dev/sdb1 opts="-cc"
|
code: filesystem fstype=ext4 dev=/dev/sdb1 opts="-cc"
|
||||||
notes:
|
notes:
|
||||||
- uses mkfs command
|
- uses mkfs command
|
||||||
'''
|
'''
|
Loading…
Add table
Add a link
Reference in a new issue