-
Notifications
You must be signed in to change notification settings - Fork 0
/
buildout.cfg
69 lines (58 loc) · 1.51 KB
/
buildout.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
[buildout]
newest = false
parts =
supervisor
supervisor_template
pidproxy
supervisor-reboot
logrotate
logrotate-diario
find-links =
http://dist.repoze.org/
http://dist.plone.org/thirdparty
unzip = true
versions = versions
[pidproxy]
recipe = zc.recipe.egg:scripts
eggs = supervisor
[supervisor]
recipe = collective.recipe.supervisor
http-socket = unix
file = ${buildout:directory}/var/supervisor.sock
supervisord-environment =
nodaemon = false
chmod = 0600
loglevel = info
user = admin
password = admin
supervisord-conf = ${buildout:directory}/etc/supervisord.conf
plugins =
superlance
[supervisor_template]
recipe = collective.recipe.template
input = templates/supervisor.in
output = ${buildout:directory}/etc/supervisord.conf
[supervisor-reboot]
recipe = z3c.recipe.usercrontab
times = @reboot
command = ${buildout:bin-directory}/supervisord -c ${buildout:directory}/etc/supervisord.conf
[logrotate]
recipe = collective.recipe.template
input = templates/logrotate.conf.tmpl
output = etc/logrotate.conf
[logrotate-diario]
recipe = z3c.recipe.usercrontab
times = 0 6 * * *
command = /usr/sbin/logrotate --state ${buildout:directory}/var/logrotate.status ${buildout:directory}/${logrotate:output}
[cmds]
recipe = plone.recipe.command
command =
chmod 600 .installed.cfg
chmod 744 ${buildout:directory}/bin/*
update-command = ${cmds:command}
[versions]
superlance = 0.7
meld3 = 0.6.10
supervisor = 3.0b1
elementtree = 1.2.7_20070827_preview
collective.recipe.supervisor = 0.18