revert changes
This commit is contained in:
parent
662ce85cb8
commit
42b5783486
4
run.sh
4
run.sh
@ -14,6 +14,10 @@ if [ "$1" = "import" ]; then
|
||||
# Initialize PostgreSQL
|
||||
sudo -u postgres echo "autovacuum = off" >> /etc/postgresql/10/main/postgresql.custom.conf
|
||||
service postgresql start
|
||||
sudo -u postgres createuser renderer
|
||||
sudo -u postgres createdb -E UTF8 -O renderer gis
|
||||
sudo -u postgres psql -d gis -c "CREATE EXTENSION postgis;"
|
||||
sudo -u postgres psql -d gis -c "CREATE EXTENSION hstore;"
|
||||
sudo -u postgres psql -d gis -c "ALTER TABLE geometry_columns OWNER TO renderer;"
|
||||
sudo -u postgres psql -d gis -c "ALTER TABLE spatial_ref_sys OWNER TO renderer;"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user