2023-10-19 11:10:04 +02:00
|
|
|
---
|
2022-04-03 11:04:27 +02:00
|
|
|
####################################################################
|
|
|
|
# WARNING: These are designed specifically for Ansible tests #
|
|
|
|
# and should not be used as examples of how to write Ansible roles #
|
|
|
|
####################################################################
|
|
|
|
|
2023-10-19 11:10:04 +02:00
|
|
|
# Copyright (c) Ansible Project
|
|
|
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
2022-04-03 11:04:27 +02:00
|
|
|
- name: Setup
|
2023-10-19 11:10:04 +02:00
|
|
|
include_tasks: setup.yml
|
2022-04-03 11:04:27 +02:00
|
|
|
|
|
|
|
- name: Check availability of xattr support
|
|
|
|
command: setfattr -n user.foo {{ test_file }}
|
2023-10-19 11:10:04 +02:00
|
|
|
ignore_errors: true
|
2022-04-03 11:04:27 +02:00
|
|
|
register: xattr
|
|
|
|
|
|
|
|
- name: Test
|
2023-10-19 11:10:04 +02:00
|
|
|
include_tasks: test.yml
|
2022-04-03 11:04:27 +02:00
|
|
|
when: xattr is not failed
|