New in version 1.3.
Parameter |
Choices/Defaults |
Comments |
---|---|---|
follow
|
|
If
yes , dereferences symlinks and sets/gets attributes on symlink target, otherwise acts on symlink itself. |
key
|
|
The name of a specific Extended attribute key to set/retrieve.
|
path
required |
|
The full path of the file/object to get the facts of.
Before 2.3 this option was only usable as name.
aliases: name |
state
|
|
defines which state you want to do.
read retrieves the current value for a key (default) present sets name to value , default if value is set all dumps all data keys retrieves all keys absent deletes the key |
value
|
|
The value to set the named name/key to, it automatically sets the
state to 'set'. |
Note
- name: Obtain the extended attributes of /etc/foo.conf
xattr:
path: /etc/foo.conf
- name: Sets the key 'foo' to value 'bar'
xattr:
path: /etc/foo.conf
key: user.foo
value: bar
- name: Removes the key 'foo'
xattr:
path: /etc/foo.conf
key: user.foo
state: absent
This module is flagged as stableinterface which means that the maintainers for this module guarantee that no backward incompatible interface changes will be made.
Hint
If you notice any issues in this documentation you can edit this document to improve it.