1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
#those are the default variables for postgresql-postgis.
#this file will be scanned from /etc/default/postgis,
#and then from $HOME/postgis/profile
#values should NOT be in quotes
#the name of the template database to create
TEMPLATEDB=template_gis
#the user/group to be granted maximum rights to the template.
#public/groups are ok, but cannot be owners, so cannot grant
#privileges on databases created from this template.
GRUSER=postgres
#name of the user the template script will be created/removed as.
#should be either dba, or the database cluster owner.
#defaults to the cluster owner, and if none, to postgres.
DBAUSER=postgres
#this is the postgis functionality loader script.
#as it contains the name of the postgresql-postgis library, this
#file will designate which postgis version to use.
PGISSCRIPT=postgis.sql
#set this to true not to load huge spatial_ref_sys table in the template.
#NO_SRS=true
#set this to true not to load topology functionality in the template.
#NO_TOPO=true
|