与主管一起启动 cron 服务

Kar*_*son 3 cron 16.04

我的 supervisord.conf 中有以下内容:

[program:cron]
command=service cron start
autostart=true
autorestart=false
stderr_logfile=/var/log/cron.err.log
stdout_logfile=/var/log/cron.out.log
Run Code Online (Sandbox Code Playgroud)

好像失败了?:

root@srv:/# supervisorctl
cron                             FATAL     Exited too quickly (process log may have details)
Run Code Online (Sandbox Code Playgroud)

但是它正在运行:

root@srv:/# ps aux | grep cron
root        52  0.0  0.1  26068  2464 ?        Ss   13:07   0:00 /usr/sbin/cron
root      3053  0.0  0.0  11284   936 ?        S+   13:08   0:00 grep --color=auto cron
Run Code Online (Sandbox Code Playgroud)

我是否与主管正确启动了 cron?