From f4de40fc43a4e45f109d59f729790d51b49b9e6d Mon Sep 17 00:00:00 2001 From: Alexander Bulimov Date: Mon, 6 May 2013 18:08:38 +0400 Subject: [PATCH] renamed mkfs and moved to system/filesystem --- library/{mkfs => system/filesystem} | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename library/{mkfs => system/filesystem} (95%) diff --git a/library/mkfs b/library/system/filesystem similarity index 95% rename from library/mkfs rename to library/system/filesystem index 718437e363..5c7333bfea 100755 --- a/library/mkfs +++ b/library/system/filesystem @@ -21,7 +21,7 @@ DOCUMENTATION = ''' --- author: Alexander Bulimov -module: mkfs +module: filesystem short_description: Makes file system on block device description: - This module creates file system. @@ -46,9 +46,9 @@ options: - List of options to be passed to mkfs command. examples: - 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. - code: mkfs fstype=ext4 dev=/dev/sdb1 opts="-cc" + code: filesystem fstype=ext4 dev=/dev/sdb1 opts="-cc" notes: - uses mkfs command '''