1
0
Fork 0
mirror of https://github.com/YunoHost/yunohost.git synced 2024-09-03 20:06:10 +02:00

migrate_to_bullseye: add the list of app-ynh-deps in the php7.4 install trick, because that seem to solve some stupid dependency blocage issues...

This commit is contained in:
Alexandre Aubin 2022-01-07 01:01:19 +01:00
parent 607fad2105
commit 79c70b7629

View file

@ -200,7 +200,9 @@ class MyMigration(Migration):
] ]
ret = self.apt_install( ret = self.apt_install(
f"{' '.join(php74packages_to_install)} -o Dpkg::Options::='--force-confmiss'" f"{' '.join(php74packages_to_install)} "
"$(dpkg --list | grep ynh-deps | awk '{print $2}') "
"-o Dpkg::Options::='--force-confmiss'"
) )
if ret != 0: if ret != 0:
# FIXME: i18n once this is stable? # FIXME: i18n once this is stable?