mirror of
https://github.com/jkaninda/mysql-bkup.git
synced 2025-12-06 13:39:41 +01:00
13 lines
371 B
Plaintext
13 lines
371 B
Plaintext
[supervisord]
|
|
nodaemon=true
|
|
user=root
|
|
logfile=/var/log/supervisor/supervisord.log
|
|
pidfile=/var/run/supervisord.pid
|
|
|
|
[program:cron]
|
|
command = /bin/bash -c "declare -p | grep -Ev '^declare -[[:alpha:]]*r' > /run/supervisord.env && /usr/sbin/cron -f -L 15"
|
|
autostart=true
|
|
autorestart=true
|
|
user = root
|
|
stderr_logfile=/var/log/cron.err.log
|
|
stdout_logfile=/var/log/cron.out.log |