diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2008-09-12 19:51:30 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2008-09-12 19:51:30 +0000 |
commit | 4e9554bdfe13fa5ce42098c4b04531d501654e5c (patch) | |
tree | 6a3fb79fccd491d020ee562c23fd9c4b8b4d42fe /package/base-files/files/lib | |
parent | 154807d30e3ce79af54398fad888a972620e32d5 (diff) |
sysupgrade: add optional delay before rebooting
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12572 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/base-files/files/lib')
-rw-r--r-- | package/base-files/files/lib/upgrade/common.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/base-files/files/lib/upgrade/common.sh b/package/base-files/files/lib/upgrade/common.sh index f0d0c20b9..59ac7a70b 100644 --- a/package/base-files/files/lib/upgrade/common.sh +++ b/package/base-files/files/lib/upgrade/common.sh @@ -147,5 +147,6 @@ do_upgrade() { jffs2_copy_config fi } + [ -n "$DELAY" ] && sleep "$DELAY" ask_bool 1 "Reboot" && reboot } |