mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-08-04 15:47:32 +02:00
Update to 2022-03-07 14:00
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
#!/bin/bash -e
|
||||
|
||||
{% for client in wh_clients %}
|
||||
{% for app in client.apps %}
|
||||
{% set app = wh_default_app | combine(app, recursive=True) %}
|
||||
{% if app.backend | default(client.backend) | default(wh_defaults.backend) == inventory_hostname %}
|
||||
echo Starting archiving {{ client.name }} - {{ app.name }}
|
||||
sh /opt/wh/{{ client.name }}/apps/{{ app.name }}/bin/backup.sh
|
||||
echo Archive for {{ client.name }} - {{ app.name }} created
|
||||
{% endif %}
|
||||
|
||||
{% endfor %}
|
||||
{% endfor %}
|
Reference in New Issue
Block a user