From 56b831d912a8c26c59ffb6edc3a19e061728fbef Mon Sep 17 00:00:00 2001 From: Arthur BOUDREAULT <boudreaultarthur@ik.me> Date: Wed, 17 Nov 2021 14:55:32 +0100 Subject: [PATCH] feat: cron task to autoupdate Yunohost daily --- tasks/apps.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/tasks/apps.yml b/tasks/apps.yml index 53f19ee..f4717a9 100644 --- a/tasks/apps.yml +++ b/tasks/apps.yml @@ -32,3 +32,14 @@ loop_control: loop_var: ynh_app when: ynh_app.label not in ynh_installed_apps.values() + +- name: Creates a cron file under /etc/cron.d to auto-update Yunohost everyday + ansible.builtin.cron: + name: "auto-update Yunohost everyday at 12. + Logs can be found in /var/log/yunohost/categories/operation" + hour: "12" + user: root + job: "yunohost tools update && \ + yunohost tools upgrade system && \ + yunohost tools upgrade apps" + cron_file: ynh_autoupdate -- GitLab