The problem is that lsb_release -ir returns
Release: 3.1
and /usr/share/postgresql-common/supported-versions is not accepting
this release but is rather expecting testing/unstable instead, which
is what appears in /etc/debian_version.
I think a proper fix would involve modifying
/usr/share/postgresql-common/supported-versions to properly detect
testing/unstable. An incorrect temporary workaround that will allow
you to get the packages installed properly is to apply this patch:
--- /usr/share/postgresql-common/supported-versions~ 2005-11-21
19:22:56.000000000 -0500
+++ /usr/share/postgresql-common/supported-versions 2005-11-24
09:39:30.803502656 -0500
@@ -25,6 +25,9 @@
testing/unstable)
echo -e "7.4\n8.1"
;;
+ 3.1)
+ echo -e "7.4\n8.1"
+ ;;
*)
echo "Unknown Debian release: $1"
exit 1
to /usr/share/postgresql-common/supported-versions. This is a wrong
fix though because the real answer for an actual 3.1 system may be
different.
--
Jay Berkenbilt <[EMAIL PROTECTED]>
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]