Fixing docs in xattr module

This commit is contained in:
James Cammarata 2013-08-20 00:47:07 -05:00
parent e3adfbf5f8
commit 230077fda9

View file

@ -21,7 +21,7 @@ version_added: "1.3"
short_description: set/retrieve extended attributes short_description: set/retrieve extended attributes
description: description:
- Manages filesystem user defined extended attributes, requires that they are enabled - Manages filesystem user defined extended attributes, requires that they are enabled
on the target filesystem and that the setfattr/getfattr utilities are present. on the target filesystem and that the setfattr/getfattr utilities are present.
options: options:
name: name:
required: true required: true
@ -45,18 +45,18 @@ options:
choices: [ 'read', 'present', 'all', 'keys', 'absent' ] choices: [ 'read', 'present', 'all', 'keys', 'absent' ]
description: description:
- defines which state you want to do. - defines which state you want to do.
c(read) retrieves the current value for a c(key) (default) c(read) retrieves the current value for a c(key) (default)
c(present) sets c(name) to c(value), default if value is set c(present) sets c(name) to c(value), default if value is set
c(all) dumps all data c(all) dumps all data
c(keys) retrieves all keys c(keys) retrieves all keys
c(absent) deletes the key c(absent) deletes the key
follow: follow:
required: false required: false
default: yes default: yes
choices: [ 'yes', 'no' ] choices: [ 'yes', 'no' ]
description: description:
- if yes, dereferences symlinks and sets/gets attributes on symlink target, - if yes, dereferences symlinks and sets/gets attributes on symlink target,
otherwise acts on symlink itself. otherwise acts on symlink itself.
author: Brian Coca author: Brian Coca
''' '''