summaryrefslogtreecommitdiff
path: root/test/integration/targets/xattr/tasks/main.yml
blob: 563326b839e01ddf359ae03e34247e22b1f8eab0 (plain)
1
2
3
4
5
6
7
8
9
10
11
- name: Setup
  include: setup.yml

- 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