1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/funkwhale_ynh.git synced 2024-09-03 18:36:24 +02:00

add postgresql-contrib in app dependencies

When installing Funk on my server, I had the following error message:

```bash
django.db.utils.OperationalError: could not open extension control file "/usr/share/postgresql/9.6/extension/unaccent.control": No such file or directory
```

The installation of `postgresql-contrib` solves this problem.
This commit is contained in:
GannonTdW 2018-10-10 11:55:02 +02:00 committed by GitHub
parent 331300c6a9
commit feae5c6f2d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -71,7 +71,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 python3-venv \
libjpeg-dev libmagic-dev libpq-dev postgresql postgresql-contrib python3-dev python3-venv \
redis-server libldap2-dev libsasl2-dev \
`# add arm support` \
zlib1g-dev libffi-dev libssl-dev
@ -242,4 +242,4 @@ fi
#=================================================
systemctl start "$app-server" "$app-worker" "$app-beat"
systemctl reload nginx
systemctl reload nginx