Changed the hard-coding of postgresql "8.1 and 8.2" to "8.1, 8.2 or 8.3"
This commit is contained in:
parent
066e0dab04
commit
45f0787576
|
@ -27,8 +27,11 @@ if [ -d /etc/postgresql/8.1 ]; then
|
|||
elif [ -d /etc/postgresql/8.2 ]; then
|
||||
postgresql_dir=/etc/postgresql/8.2/main
|
||||
postgresql_init_script=/etc/init.d/postgresql-8.2
|
||||
elif [ -d /etc/postgresql/8.3 ]; then
|
||||
postgresql_dir=/etc/postgresql/8.3/main
|
||||
postgresql_init_script=/etc/init.d/postgresql-8.3
|
||||
else
|
||||
echo "no postgresql 8.1 or 8.2 found" >&2
|
||||
echo "no postgresql 8.1, 8.2 or 8.3 found" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
|
|
|
@ -25,8 +25,11 @@ if [ -d /etc/postgresql/8.1 ]; then
|
|||
elif [ -d /etc/postgresql/8.2 ]; then
|
||||
postgresql_dir=/etc/postgresql/8.2/main
|
||||
postgresql_init_script=/etc/init.d/postgresql-8.2
|
||||
elif [ -d /etc/postgresql/8.3 ]; then
|
||||
postgresql_dir=/etc/postgresql/8.3/main
|
||||
postgresql_init_script=/etc/init.d/postgresql-8.3
|
||||
else
|
||||
echo "no postgresql 8.1 or 8.2 found" >&2
|
||||
echo "no postgresql 8.1, 8.2 or 8.3 found" >&2
|
||||
exit 1
|
||||
fi
|
||||
postgres_user=postgres
|
||||
|
|
|
@ -26,8 +26,11 @@ if [ -d /etc/postgresql/8.1 ]; then
|
|||
elif [ -d /etc/postgresql/8.2 ]; then
|
||||
postgresql_dir=/etc/postgresql/8.2/main
|
||||
postgresql_init_script=/etc/init.d/postgresql-8.2
|
||||
elif [ -d /etc/postgresql/8.3 ]; then
|
||||
postgresql_dir=/etc/postgresql/8.3/main
|
||||
postgresql_init_script=/etc/init.d/postgresql-8.3
|
||||
else
|
||||
echo "no postgresql 8.1 or 8.2 found" >&2
|
||||
echo "no postgresql 8.1, 8.2 or 8.3 found" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
|
|
|
@ -53,8 +53,8 @@ Build-Depends: debhelper (>= 4.0.0),
|
|||
libapache2-mod-php5,
|
||||
php-pear,
|
||||
php5-gd,
|
||||
postgresql-8.1 | postgresql-8.2,
|
||||
postgresql-client-8.1 | postgresql-client-8.2
|
||||
postgresql-8.1 | postgresql-8.2 | postgresql-8.3,
|
||||
postgresql-client-8.1 | postgresql-client-8.2 | postgresql-client-8.3
|
||||
Standards-Version: 3.6.1
|
||||
|
||||
Package: campcaster-libs
|
||||
|
@ -119,8 +119,8 @@ Depends: ${shlibs:Depends},
|
|||
libapache2-mod-php5,
|
||||
php-pear,
|
||||
php5-gd,
|
||||
postgresql-8.1 | postgresql-8.2,
|
||||
postgresql-client-8.1 | postgresql-client-8.2
|
||||
postgresql-8.1 | postgresql-8.2 | postgresql-8.3,
|
||||
postgresql-client-8.1 | postgresql-client-8.2 | postgresql-client-8.3
|
||||
Description: A radio program automation and support tool.
|
||||
Campcaster is the first free and open radio management software that
|
||||
provides live studio broadcast capabilities as well as remote automation
|
||||
|
|
Loading…
Reference in New Issue