mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
1.4 KiB
YAML
66 lines
1.4 KiB
YAML
- name: Set attributes
|
|
xattr:
|
|
path: "{{ test_file }}"
|
|
key: user.foo
|
|
value: bar
|
|
register: xattr_set_result
|
|
|
|
- name: Get attributes
|
|
xattr:
|
|
path: "{{ test_file }}"
|
|
register: xattr_get_all_result
|
|
|
|
- name: Get specific attribute
|
|
xattr:
|
|
path: "{{ test_file }}"
|
|
key: user.foo
|
|
register: xattr_get_specific_result
|
|
|
|
- assert:
|
|
that:
|
|
- "xattr_set_result.changed"
|
|
- "xattr_get_all_result['xattr']['user.foo'] == 'bar'"
|
|
- "not xattr_get_all_result.changed"
|
|
- "xattr_get_specific_result['xattr']['user.foo'] == 'bar'"
|
|
- "not xattr_get_specific_result.changed"
|
|
|
|
- name: Set attribute again
|
|
xattr:
|
|
path: "{{ test_file }}"
|
|
key: user.foo
|
|
value: bar
|
|
register: xattr_set_again_result
|
|
|
|
- assert:
|
|
that:
|
|
- "not xattr_set_again_result.changed"
|
|
|
|
- name: Unset attribute
|
|
xattr:
|
|
path: "{{ test_file }}"
|
|
key: user.foo
|
|
state: absent
|
|
register: xattr_unset_result
|
|
|
|
- name: get attributes
|
|
xattr:
|
|
path: "{{ test_file }}"
|
|
register: xattr_get_after_unset_result
|
|
|
|
- assert:
|
|
that:
|
|
- "xattr_unset_result.changed"
|
|
- "xattr_get_after_unset_result['xattr'] == {}"
|
|
- "not xattr_get_after_unset_result.changed"
|
|
|
|
- name: Unset attribute again
|
|
xattr:
|
|
path: "{{ test_file }}"
|
|
key: user.foo
|
|
state: absent
|
|
register: xattr_unset_result
|
|
|
|
- assert:
|
|
that:
|
|
- "not xattr_set_again_result.changed"
|