-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpostgres.cfg
74 lines (57 loc) · 1.9 KB
/
postgres.cfg
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#http://koansys.com/tech/buildout-for-django-with-postgressql-on-os-x
[postgres]
recipe = hexagonit.recipe.cmmi
url = ftp://ftp.ch.postgresql.org/mirror/postgresql/source/v9.0.4/postgresql-9.0.4.tar.gz
configure-options =
--without-readline
--enable-thread-safety
[psycopg2-env]
PATH = %(PATH)s:${postgres:location}/bin
[psycopg2]
recipe = zc.recipe.egg:custom
egg = psycopg2
include-dirs = ${postgres:location}/include
library-dirs = ${postgres:location}/lib
rpath = ${postgres:location}/lib
environment = psycopg2-env
[postgres-init]
data = ${buildout:directory}/var/postgres/data
log = ${buildout:directory}/var/postgres/postgresql.log
recipe = cp.recipe.cmd
shell = /bin/bash
dbapp=mailcone_app
dbzodb=mailcone_zodb
app_user=mailcone
zodb_user=${:app_user}
install_cmd =
${postgres:location}/bin/pg_ctl init -D ${postgres-init:data}
${postgres:location}/bin/pg_ctl start -D ${postgres-init:data} -l ${postgres-init:log}
while [ ! -f ${postgres-init:data}/postmaster.pid ]; do echo "wait of postgresql" && sleep 1; done
${postgres:location}/bin/createdb ${:dbapp}
${postgres:location}/bin/createuser ${:app_user} -S -A -D -R
${postgres:location}/bin/createdb ${:dbzodb}
${postgres:location}/bin/createuser ${:zodb_user} -S -A -D -R
${postgres:location}/bin/pg_ctl stop -D ${postgres-init:data} -l ${postgres-init:log}
echo "postgres configured"
[postgres-script]
recipe = collective.recipe.template
input = etc/postgres.in
output = ${buildout:directory}/bin/postgres
[postgres-rights]
recipe = cp.recipe.cmd
shell = /bin/bash
install_cmd =
chmod 744 ${postgres-script:output}
update_cmd = ${:install_cmd}
[postgres_install_base]
# parts and eggs depend here, because is easier
# make additional modification from outside this
# buildout configuration.
parts =
postgres
psycopg2
postgres-init
postgres-script
postgres-rights
eggs =
${psycopg2:egg}