mirror of
https://github.com/unifi-utilities/unifios-utilities.git
synced 2024-08-30 18:32:21 +00:00
Updates cron job file to work with /crond and /cron (#519)
newer versions don't have /crond anymore, so we check if crond is there if so restart it. if crond is not there we check for cron and restart cron if its present fixes #515
This commit is contained in:
parent
fa3f3d0dd8
commit
c23834fefa
@ -20,6 +20,13 @@ esac
|
||||
## This script will re-add them on startup.
|
||||
|
||||
cp ${DATA_DIR}/cronjobs/* /etc/cron.d/
|
||||
/etc/init.d/crond restart
|
||||
# Older UDM's had crond, so lets check if its here if so use that one, otherwise use cron
|
||||
if [ -x /etc/init.d/crond ]; then
|
||||
/etc/init.d/crond restart
|
||||
elif [ -x /etc/init.d/cron ]; then
|
||||
/etc/init.d/cron restart
|
||||
else
|
||||
echo "Neither crond nor cron found."
|
||||
fi
|
||||
|
||||
exit 0
|
||||
|
Loading…
Reference in New Issue
Block a user