You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
347 B
11 lines
347 B
#!/bin/bash -e
|
|
|
|
{% for client in wh_clients %}
|
|
{% for app in client.apps %}
|
|
{% set app = wh_default_app | combine(app, recursive=True) %}
|
|
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
|
|
|
|
{% endfor %}
|
|
{% endfor %}
|
|
|