mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
6ca3e78d11
* Initial commit
* Adding changelog fragment
* fixing changelog fragment
* Updating documentation
* Applying review suggestions
(cherry picked from commit 288fe1cfc6
)
Co-authored-by: Ajpantuso <ajpantuso@gmail.com>
40 lines
1.2 KiB
YAML
40 lines
1.2 KiB
YAML
---
|
|
- name: Archive - exclusion patterns ({{ format }})
|
|
archive:
|
|
path: "{{ output_dir }}/*.txt"
|
|
dest: "{{ output_dir }}/archive_exclusion_patterns.{{ format }}"
|
|
format: "{{ format }}"
|
|
exclusion_patterns: b?r.*
|
|
register: archive_exclusion_patterns
|
|
|
|
- name: Assert that only included files are archived - exclusion patterns ({{ format }})
|
|
assert:
|
|
that:
|
|
- archive_exclusion_patterns is changed
|
|
- "'bar.txt' not in archive_exclusion_patterns.archived"
|
|
|
|
- name: Remove archive - exclusion patterns ({{ format }})
|
|
file:
|
|
path: "{{ output_dir }}/archive_exclusion_patterns.{{ format }}"
|
|
state: absent
|
|
|
|
- name: Archive - exclude path ({{ format }})
|
|
archive:
|
|
path:
|
|
- "{{ output_dir }}/sub/subfile.txt"
|
|
- "{{ output_dir }}"
|
|
exclude_path:
|
|
- "{{ output_dir }}"
|
|
dest: "{{ output_dir }}/archive_exclude_paths.{{ format }}"
|
|
format: "{{ format }}"
|
|
register: archive_excluded_paths
|
|
|
|
- name: Assert that excluded paths do not influence archive root - exclude path ({{ format }})
|
|
assert:
|
|
that:
|
|
- archive_excluded_paths.arcroot != output_dir
|
|
|
|
- name: Remove archive - exclude path ({{ format }})
|
|
file:
|
|
path: "{{ output_dir }}/archive_exclude_paths.{{ format }}"
|
|
state: absent
|