From 0c248bcb7eafcfcccb14570c8b0983183dcd30e0 Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Sat, 16 Jun 2018 20:59:18 +0200 Subject: [PATCH] Last minute fix : install php7.0-acpu to hopefully make stretch still work after the upgrade --- src/yunohost/data_migrations/0003_migrate_to_stretch.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/yunohost/data_migrations/0003_migrate_to_stretch.py b/src/yunohost/data_migrations/0003_migrate_to_stretch.py index c291a31b7..6969de571 100644 --- a/src/yunohost/data_migrations/0003_migrate_to_stretch.py +++ b/src/yunohost/data_migrations/0003_migrate_to_stretch.py @@ -221,9 +221,9 @@ class MyMigration(Migration): upgrade_command += " apt-get install" upgrade_command += " --assume-yes " upgrade_command += " ".join(YUNOHOST_PACKAGES) - # We also install php-zip to fix an issue with nextcloud and kanboard - # that need it when on stretch. - upgrade_command += " php-zip" + # We also install php-zip and php7.0-acpu to fix an issue with + # nextcloud and kanboard that need it when on stretch. + upgrade_command += " php-zip php7.0-apcu" upgrade_command += " 2>&1 | tee -a {}".format(self.logfile) wait_until_end_of_yunohost_command = "(while [ -f {} ]; do sleep 2; done)".format(MOULINETTE_LOCK)