mirror of
https://github.com/borgbase/ansible-role-borgbackup.git
synced 2026-03-01 02:20:24 +01:00
9 lines
272 B
YAML
9 lines
272 B
YAML
---
|
|
- name: Add and run all plays
|
|
include_tasks: "{{ element }}"
|
|
with_items: "{{ lookup( 'ansible.builtin.fileglob', '*.yml' ).split(',') | reject('search', 'main.yml') | reject('search', 'noauto_*') | sort }}"
|
|
loop_control:
|
|
loop_var: element
|
|
tags: always
|
|
...
|