Created
June 24, 2014 17:53
-
-
Save maraca/a7a07e75a70b3c7fdff0 to your computer and use it in GitHub Desktop.
How to add a cronjob to synology.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Edit the crontab | |
vi /etc/crontab | |
# Add your entry | |
52 10 * * * root echo 'hello' >> /tmp/hello | |
# Restart crond | |
RackStation> /usr/syno/etc.defaults/rc.d/S04crond.sh stop | |
stop crond | |
RackStation> /usr/syno/etc.defaults/rc.d/S04crond.sh start | |
Starting crond... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment