unifios-utilities/on-boot-script-2.x/examples/udm-files/on_boot.d/25-add-cron-jobs.sh

26 lines
482 B
Bash
Raw Normal View History

2023-02-23 05:44:27 +00:00
#!/bin/bash
# Get DataDir location
DATA_DIR="/data"
case "$(ubnt-device-info firmware || true)" in
1*)
DATA_DIR="/mnt/data"
;;
2*)
DATA_DIR="/data"
;;
3*)
DATA_DIR="/data"
;;
*)
echo "ERROR: No persistent storage found." 1>&2
exit 1
;;
esac
## Store crontab files in ${DATA_DIR}/cronjobs/ (you will need to create this folder).
2023-02-19 03:31:32 +00:00
## This script will re-add them on startup.
cp ${DATA_DIR}/cronjobs/* /etc/cron.d/
2023-02-19 03:31:32 +00:00
/etc/init.d/crond restart
exit 0