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:
parent
331300c6a9
commit
feae5c6f2d
1 changed files with 2 additions and 2 deletions
|
@ -71,7 +71,7 @@ ynh_app_setting_set "$app" port "$port"
|
||||||
#=================================================
|
#=================================================
|
||||||
|
|
||||||
ynh_install_app_dependencies build-essential curl ffmpeg \
|
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 \
|
redis-server libldap2-dev libsasl2-dev \
|
||||||
`# add arm support` \
|
`# add arm support` \
|
||||||
zlib1g-dev libffi-dev libssl-dev
|
zlib1g-dev libffi-dev libssl-dev
|
||||||
|
|
Loading…
Add table
Reference in a new issue