renamed mkfs and moved to system/filesystem

reviewable/pr18780/r1
Alexander Bulimov 12 years ago
parent 4932908754
commit 6a644714a7

@ -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…
Cancel
Save