Commit 0747d41e by James Cammarata

Cleaning up some typos in the xattr module

parent 5e4f9657
...@@ -69,7 +69,7 @@ EXAMPLES = ''' ...@@ -69,7 +69,7 @@ EXAMPLES = '''
- xattr: path=/etc/foo.conf key=user.foo value=bar - xattr: path=/etc/foo.conf key=user.foo value=bar
# Removes the key 'foo' # Removes the key 'foo'
- xattr: name=/etc/foo.conf name=user.foo state=remove - xattr: name=/etc/foo.conf key=user.foo state=absent
''' '''
import operator import operator
...@@ -97,7 +97,7 @@ def get_xattr(module,path,key,follow): ...@@ -97,7 +97,7 @@ def get_xattr(module,path,key,follow):
cmd.append('-n %s' % key) cmd.append('-n %s' % key)
cmd.append(path) cmd.append(path)
return _run_xattr(module,cmd) return _run_xattr(module,cmd,False)
def set_xattr(module,path,key,value,follow): def set_xattr(module,path,key,value,follow):
...@@ -142,7 +142,7 @@ def _run_xattr(module,cmd,check_rc=True): ...@@ -142,7 +142,7 @@ def _run_xattr(module,cmd,check_rc=True):
def main(): def main():
module = AnsibleModule( module = AnsibleModule(
argument_spec = dict( argument_spec = dict(
name = dict(required=True, aliases=['paht']), name = dict(required=True, aliases=['path']),
key = dict(required=False, default=None), key = dict(required=False, default=None),
value = dict(required=False, default=None), value = dict(required=False, default=None),
state = dict(required=False, default='read', choices=[ 'read', 'present', 'all', 'keys', 'absent' ], type='str'), state = dict(required=False, default='read', choices=[ 'read', 'present', 'all', 'keys', 'absent' ], type='str'),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment