mirror of
https://github.com/bokysan/docker-postfix.git
synced 2024-11-10 08:55:39 +08:00
7 lines
140 B
Bash
7 lines
140 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
if [ -f /usr/sbin/cron ]; then # Ubuntu
|
||
|
exec /usr/sbin/cron -f
|
||
|
else # Alpine / Busybox cron
|
||
|
exec /usr/sbin/crond -f -S
|
||
|
fi
|