12345678910111213141516171819202122232425 |
- #####################################################
- ########## Restore to defaults #############
- #####################################################
- case "$1" in
- restore)
- if [ -f /var/flasher.initcomplete ]
- then
- echo -n "Restoring to default configuration... "
- rm -rf /conf/*
- cp -Rp /etc/defconfig/* /conf
- if [ $? != 0 ]
- then
- echo "Failed."
- exit 1
- else
- echo "Done."
- fi
- fi
- ;;
- *)
- echo "Usage: $0 start"
- ;;
- esac
|