From 87b02589d644b9e2c19976dd5599cf6f5f898153 Mon Sep 17 00:00:00 2001 From: Yohann Dedy Date: Sun, 3 Jan 2021 23:50:28 +0100 Subject: [PATCH] Playbook upgrade_nextcloud.yml --- upgrade_nextcloud.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 upgrade_nextcloud.yml diff --git a/upgrade_nextcloud.yml b/upgrade_nextcloud.yml new file mode 100644 index 0000000..b345956 --- /dev/null +++ b/upgrade_nextcloud.yml @@ -0,0 +1,9 @@ +--- +- hosts: nextcloud + tasks: + - name: Upgrade Nextcloud instance + command: "/usr/bin/php /var/www/nextcloud/updater/updater.phar --quiet --no-interaction" + become: yes + become_user: www-data + +