mirror of
https://github.com/bokysan/docker-postfix.git
synced 2025-09-06 06:25:40 +08:00
7 lines
No EOL
134 B
Bash
Executable file
7 lines
No EOL
134 B
Bash
Executable file
#!/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 |