fixed a typo in [3234]

This commit is contained in:
fgerlits 2007-09-20 12:30:27 +00:00
parent 11e0d72035
commit 0e28942447
1 changed files with 2 additions and 2 deletions

View File

@ -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