:: [DNG] postgres
Página superior
Eliminar este mensaje
Responder a este mensaje
Autor: Héctor González
Fecha:  
A: Dng
Asunto: [DNG] postgres
Hello all.

What is the proper way to report a problem with a package?

I made an account at git.devuan.org, but didn´t find a project that
seemed appropiate.

Last week I upgraded several debian Xen DomU´s (from wheezy) and
installed a Dom0, all with devuan,
they are working fine, but there were a couple glitches.

One is with postgres, which is running, but complained during the
upgrade that it doesn´t
know the debian version, the script that complains is
/usr/share/postgresql-common/supported-versions,
and here is a patch to fix it:

*** supported-versions    2016-05-26 19:10:18.387175510 -0500
--- supported-versions.orig    2016-05-26 19:07:13.767175510 -0500
*************** default() {
*** 59,67 ****
           [dD]ebian)
               debian "$RELEASE"
               ;;
-         [dD]evuan)
-             devuan "$RELEASE"
-             ;;
           *)
               echo "supported-versions: WARNING! Unknown distribution: 
$DISTRO" >&2
               if  echo $ID_LIKE | egrep  '(^| )ubuntu($| )' > /dev/null; 
then
--- 59,64 ----
*************** debian_backports() {
*** 150,171 ****
       esac
   }


- devuan() {
-     case "$1" in
-         1|1.*) # Jessie
-             /bin/echo -e "9.4"
-             ;;
-         testing | unstable)
-             /bin/echo -e "9.4"
-             ;;
-         *)
-             echo "supported-versions: WARNING: Unknown Devuan release: 
$1" >&2
-             /bin/echo -e "$DEFAULT"
-             ;;
-     esac
- }
-
-
   pgdg() {
       case $1 in
           testing | unstable)
--- 147,152 ----


The other problem was with samba-common, but it was discussed on the
list already.

Hector Gonzalez