mirror of
https://github.com/borgbase/ansible-role-borgbackup.git
synced 2025-06-02 01:17:19 +02:00
9 lines
270 B
YAML
9 lines
270 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
|
|
...
|