Finally fix SOGo race condition
parent
4a0a9cbf1f
commit
863a0e4d06
|
@ -44,6 +44,7 @@ RUN mkdir /usr/share/doc/sogo \
|
||||||
COPY ./reconf-domains.sh /
|
COPY ./reconf-domains.sh /
|
||||||
COPY syslog-ng.conf /etc/syslog-ng/syslog-ng.conf
|
COPY syslog-ng.conf /etc/syslog-ng/syslog-ng.conf
|
||||||
COPY supervisord.conf /etc/supervisor/supervisord.conf
|
COPY supervisord.conf /etc/supervisor/supervisord.conf
|
||||||
|
COPY event-listener-ordered-startup.py /usr/local/bin/event-listener-ordered-startup.py
|
||||||
|
|
||||||
CMD exec /usr/bin/supervisord -c /etc/supervisor/supervisord.conf
|
CMD exec /usr/bin/supervisord -c /etc/supervisor/supervisord.conf
|
||||||
|
|
||||||
|
|
|
@ -6,32 +6,36 @@ command=/usr/sbin/syslog-ng --foreground --no-caps
|
||||||
redirect_stderr=true
|
redirect_stderr=true
|
||||||
autostart=true
|
autostart=true
|
||||||
stdout_syslog=true
|
stdout_syslog=true
|
||||||
|
priority=1
|
||||||
[program:sogo]
|
|
||||||
command=sh -c "sleep 3; /usr/sbin/sogod"
|
|
||||||
user=sogo
|
|
||||||
autorestart=true
|
|
||||||
priority=20
|
|
||||||
|
|
||||||
[program:reconf-domains]
|
|
||||||
command=/reconf-domains.sh
|
|
||||||
autorestart=true
|
|
||||||
priority=10
|
|
||||||
|
|
||||||
[program:sogo-syslog]
|
|
||||||
command=/usr/bin/tail -f /var/log/combined.log
|
|
||||||
stdout_logfile=/dev/fd/1
|
|
||||||
stdout_logfile_maxbytes=0
|
|
||||||
|
|
||||||
[program:cron]
|
[program:cron]
|
||||||
command=/usr/sbin/cron -f
|
command=/usr/sbin/cron -f
|
||||||
autorestart=true
|
autorestart=true
|
||||||
|
priority=2
|
||||||
|
|
||||||
[program:sogo-webres]
|
[program:sogo-webres]
|
||||||
command=/usr/bin/python -u -m SimpleHTTPServer 9192
|
command=/usr/bin/python -u -m SimpleHTTPServer 9192
|
||||||
directory=/usr/lib/GNUstep/SOGo/
|
directory=/usr/lib/GNUstep/SOGo/
|
||||||
user=sogo
|
user=sogo
|
||||||
autorestart=true
|
autorestart=true
|
||||||
|
priority=4
|
||||||
|
|
||||||
|
[program:reconf-domains]
|
||||||
|
command=/reconf-domains.sh
|
||||||
|
priority=3
|
||||||
|
autorestart=true
|
||||||
|
|
||||||
|
[program:sogo]
|
||||||
|
command=sh -c "sleep 5; /usr/sbin/sogod"
|
||||||
|
user=sogo
|
||||||
|
autorestart=true
|
||||||
|
priority=5
|
||||||
|
|
||||||
|
[program:sogo-syslog]
|
||||||
|
command=/usr/bin/tail -f /var/log/combined.log
|
||||||
|
stdout_logfile=/dev/fd/1
|
||||||
|
stdout_logfile_maxbytes=0
|
||||||
|
priority=6
|
||||||
|
|
||||||
[inet_http_server]
|
[inet_http_server]
|
||||||
port=9191
|
port=9191
|
||||||
|
|
Loading…
Reference in New Issue