From bb7b290ed8f29ce7dd0ed01a9bfa5948257cb1ea Mon Sep 17 00:00:00 2001 From: Philip Jay Date: Thu, 24 Jul 2014 16:46:49 +1000 Subject: [PATCH] Add fstype arg to the mount examples Needed fstype in the examples, since fstype is a required argument for mount. --- system/mount | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/system/mount b/system/mount index 9d5cdd8b06b..cd8bb9fb1ca 100755 --- a/system/mount +++ b/system/mount @@ -86,10 +86,10 @@ EXAMPLES = ''' - mount: name=/mnt/dvd src=/dev/sr0 fstype=iso9660 opts=ro state=present # Mount up device by label -- mount: name=/srv/disk src='LABEL=SOME_LABEL' state=present +- mount: name=/srv/disk src='LABEL=SOME_LABEL' fstype=ext4 state=present # Mount up device by UUID -- mount: name=/home src='UUID=b3e48f45-f933-4c8e-a700-22a159ec9077' opts=noatime state=present +- mount: name=/home src='UUID=b3e48f45-f933-4c8e-a700-22a159ec9077' fstype=xfs opts=noatime state=present '''