mirror of
https://github.com/unifi-utilities/unifios-utilities.git
synced 2024-08-30 18:32:21 +00:00
d09f89a327
* Create 25-add-cron-jobs my suggestion for adding cron jobs on startup * Update 25-add-cron-jobs
9 lines
206 B
Bash
9 lines
206 B
Bash
#!/bin/sh
|
|
# store crontab files in /mnt/data/cronjobs/ (you will need to create this foler)
|
|
# this script will re-add them on startup
|
|
|
|
cp /mnt/data/cronjobs/* /etc/cron.d/
|
|
/etc/init.d/crond restart
|
|
|
|
exit 0
|