This repository has been archived on 2023-09-13. You can view files and clone it, but cannot push or open issues or pull requests.
homeserver-ansible/roles/services/wiki/templates/wiki_update.sh.j2

10 lines
187 B
Plaintext
Raw Normal View History

2022-03-12 15:12:07 -05:00
#!/bin/sh
cd /usr/share/webapps/mediawiki
maintenance/update.php "/{{ wiki_names[0] }}"
{%- for extra_wiki in wiki_names[1:] %}
maintenance/update.php "/{{ extra_wiki }}"
{% endfor %}