Last active
August 29, 2015 14:14
-
-
Save cmprescott/5ee07ded44f242dcd293 to your computer and use it in GitHub Desktop.
Install and setup Optware cron on an Asus RT-N56U
This file contains 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
# Install curl to get around Asus wget limitations | |
ipkg install curl | |
# Install cron from optware's repository | |
ipkg install cron | |
# Remove the old startup script | |
rm /opt/etc/init.d/S10cron | |
# Download my startup script that also fixes file permissions | |
curl https://gist.githubusercontent.com/cmprescott/05a674b50964900dcd29/raw/528a76ab761995927224e9bf1728763ade4e06e7/S10cron -O /opt/etc/init.d/S10cron | |
# Restart the router | |
/sbin/reboot |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment