Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects
ynh_autoupdate.sh.j2 457 B
Newer Older
#!/bin/sh

yunohost tools update
{% if ynh_autoupdate.system %}
    yunohost tools upgrade system
{% endif %}
{% if ynh_autoupdate.apps %}
    yunohost tools upgrade apps
{% endif %}
{% if ynh_autoupdate.system is false and ynh_autoupdate.apps is false %}
    echo "Read the readme to know more about ynh_autoupdate.apps and ynh_autoupdate.system"
    echo "https://lab.frogg.it/lydra/yunohost/ansible-yunohost/-/blob/main/README.md"
    exit 1
{% endif %}