Factor path prefixes into ConfigCore structure
[hcoop/domtool2.git] / configDefault / postgres.cfg
1 structure Postgres :> POSTGRES_CONFIG = struct
2
3 val adduser = ConfigCore.sudo ^ " " ^ ConfigCore.installPrefix ^ "/sbin/domtool-postgres adduser"
4 val createdb = ConfigCore.sudo ^ " " ^ ConfigCore.installPrefix ^ "/sbin/domtool-postgres createdb"
5 val dropdb = ConfigCore.sudo ^ " " ^ ConfigCore.installPrefix ^ "/sbin/domtool-postgres dropdb"
6
7 val postgres81port = "5432";
8 val postgres91port = "5433"
9
10 end