2017-05-23 21:02:56 +02:00
|
|
|
- name: Setup
|
|
|
|
include: setup.yml
|
|
|
|
|
2018-01-09 07:31:17 +01:00
|
|
|
- name: Check availability of xattr support
|
|
|
|
command: setfattr -n user.foo {{ test_file }}
|
|
|
|
ignore_errors: yes
|
|
|
|
register: xattr
|
|
|
|
|
|
|
|
- name: Test
|
|
|
|
include: test.yml
|
|
|
|
when: xattr is not failed
|