From 603de52326ce0fc700300f7e43ce86e1c5baaa68 Mon Sep 17 00:00:00 2001 From: GannonTdW <32203939+GannonTdW@users.noreply.github.com> Date: Mon, 4 Feb 2019 23:22:29 +0100 Subject: [PATCH] add dependencie postgresql-contrib we are at least three to have had the same problem. When we install on a fresh install, we have : "django.db.utils.OperationalError: could not open extension control file "/usr/share/postgresql/9.6/extension/unaccent.control": No such file or directory" See : [here](https://github.com/YunoHost-Apps/funkwhale_ynh/issues/36), [here ](https://forum.yunohost.org/t/funkwhale-failed-installation-logs/7017) ( and [issue 60](https://github.com/YunoHost-Apps/funkwhale_ynh/issues/60) it's the same user) and [here](https://forum.yunohost.org/t/funkwhale-install-fail/5754) --- scripts/install | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/install b/scripts/install index 3a5edcf..6d8750a 100644 --- a/scripts/install +++ b/scripts/install @@ -70,7 +70,7 @@ ynh_app_setting_set "$app" port "$port" #================================================= ynh_install_app_dependencies build-essential curl ffmpeg \ - libjpeg-dev libmagic-dev libpq-dev postgresql python3-dev virtualenv \ + libjpeg-dev libmagic-dev libpq-dev postgresql postgresql-contrib python3-dev virtualenv \ redis-server libldap2-dev libsasl2-dev \ `# add arm support` \ zlib1g-dev libffi-dev libssl-dev @@ -260,4 +260,4 @@ fi #================================================= systemctl start "$app-server" "$app-worker" "$app-beat" -systemctl reload nginx \ No newline at end of file +systemctl reload nginx