forked from ccollicutt/docker-swift-onlyone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsupervisord.conf
73 lines (58 loc) · 1.9 KB
/
supervisord.conf
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
[supervisord]
nodaemon=false
[program:memcached]
command=/usr/bin/memcached -u memcache
startsecs=3
stopwaitsecs = 3
[program:rsyslog]
command=/bin/bash -c "source /etc/default/rsyslog && /usr/sbin/rsyslogd -n -c3"
startsecs = 5
stopwaitsecs = 5
[program:proxy-server]
command=/usr/bin/python /usr/bin/swift-proxy-server /etc/swift/proxy-server.conf
startsecs=3
stopwaitsecs = 3
[program:container-server]
command=/usr/bin/python /usr/bin/swift-container-server /etc/swift/container-server.conf
startsecs=3
stopwaitsecs = 3
[program:account-server]
command=/usr/bin/python /usr/bin/swift-account-server /etc/swift/account-server.conf
startsecs=3
stopwaitsecs = 3
[program:account-auditor]
command=/usr/bin/python /usr/bin/swift-account-auditor /etc/swift/account-server.conf
startsecs=3
stopwaitsecs = 3
[program:object-replicator]
command=/usr/bin/python /usr/bin/swift-object-replicator /etc/swift/object-server.conf
startsecs=3
stopwaitsecs = 3
[program:object-auditor]
command=/usr/bin/python /usr/bin/swift-object-auditor /etc/swift/object-server.conf
startsecs=3
stopwaitsecs = 3
[progam:container-auditor]
command=/usr/bin/python /usr/bin/swift-container-auditor /etc/swift/container-server.conf
startsecs=3
stopwaitsecs = 3
[program:object-auditor]
command=/usr/bin/python /usr/bin/swift-object-server /etc/swift/object-server.conf
startsecs=3
stopwaitsecs = 3
[program:account-replicator]
command=/usr/bin/python /usr/bin/swift-account-replicator /etc/swift/account-server.conf
startsecs=3
stopwaitsecs = 3
[program:account-reaper]
command=/usr/bin/python /usr/bin/swift-account-reaper /etc/swift/account-server.conf
startsecs=3
stopwaitsecs = 3
[program:container-sync]
command=/usr/bin/python /usr/bin/swift-container-sync /etc/swift/container-server.conf
startsecs=3
stopwaitsecs = 3
[program:object-updater]
command=/usr/bin/python /usr/bin/swift-object-updater /etc/swift/object-server.conf
startsecs=3
stopwaitsecs = 3