update os support for devuan

Signed-off-by: Nico Schottelius <nico@nico-notebook.schottelius.org>
This commit is contained in:
Nico Schottelius 2018-12-24 19:05:51 +01:00
parent b6b167ab2f
commit 63bbd5228a
1 changed files with 4 additions and 1 deletions

View File

@ -24,7 +24,7 @@ os=$(cat $__global/explorer/os)
osversion=$(cat "$__global/explorer/os_version")
case "$os" in
debian)
debian|devuan)
postgres_lib=libpq-dev
case $osversion in
@ -37,6 +37,9 @@ case "$os" in
8*)
postgres_version=9.4
;;
9*|ascii/ceres|ascii)
postgres_version=9.6
;;
*)
echo "Unsupported OS Version: $osversion" >&2
exit 1