mirror of
https://github.com/osm2pgsql-dev/osm2pgsql.git
synced 2025-08-19 16:28:16 +00:00
26 lines
639 B
Bash
Executable File
26 lines
639 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Creates the required tablespace for tests.
|
|
#
|
|
# Only do this when we are running under pg_virtualenv.
|
|
# Then the tablespace can be owned by the current user.
|
|
|
|
if [ "x$PG_CLUSTER_CONF_ROOT" != "x" ]; then
|
|
BASEDIR=`pwd`
|
|
|
|
TBLDIR=${BASEDIR}/osm2pgsql-test-tablespace
|
|
|
|
if [ -d "$TBLDIR" ]; then
|
|
echo "Tablespace directory already exists. Cleaning up."
|
|
|
|
if find $TBLDIR -maxdepth 1 -mindepth 1 -type d -name 'PG*'; then
|
|
rm -r $TBLDIR/PG*
|
|
fi
|
|
else
|
|
mkdir $TBLDIR
|
|
chmod 777 $TBLDIR
|
|
fi
|
|
|
|
psql -c "CREATE TABLESPACE tablespacetest LOCATION '$TBLDIR'" postgres
|
|
fi
|