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

11 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:] %}
2022-03-12 15:12:07 -05:00
maintenance/update.php "/{{ extra_wiki }}"
2022-05-10 22:11:16 -04:00
2022-03-12 15:12:07 -05:00
{% endfor %}