From 0e2894244754a9f3042104bd3468ca7963078f8e Mon Sep 17 00:00:00 2001 From: fgerlits Date: Thu, 20 Sep 2007 12:30:27 +0000 Subject: [PATCH] fixed a typo in [3234] --- campcaster/etc/debian/campcaster-station.postrm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/campcaster/etc/debian/campcaster-station.postrm b/campcaster/etc/debian/campcaster-station.postrm index 135f642d2..c7e8c02b6 100644 --- a/campcaster/etc/debian/campcaster-station.postrm +++ b/campcaster/etc/debian/campcaster-station.postrm @@ -19,10 +19,10 @@ set -e installdir=/opt/campcaster -if [ -f /etc/postgresql/8.1 ]; then +if [ -d /etc/postgresql/8.1 ]; then postgresql_dir=/etc/postgresql/8.1/main postgresql_init_script=/etc/init.d/postgresql-8.1 -elif [ -f /etc/postgresql/8.2 ]; then +elif [ -d /etc/postgresql/8.2 ]; then postgresql_dir=/etc/postgresql/8.2/main postgresql_init_script=/etc/init.d/postgresql-8.2 else