mirror of
https://git.myvelabs.com/docker/myvemail.git
synced 2025-12-18 20:46:19 +00:00
8 lines
161 B
Bash
Executable file
8 lines
161 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# Crond
|
|
if [ ! -d /etc/periodic/ ]
|
|
then
|
|
echo "Cron not detected, exiting..."
|
|
exit 1
|
|
fi
|
|
${MYVEMAIL_CROND} -b -l 0 -L /var/log/mail/cron.log
|