From: Jo-Philipp Wich Date: Sat, 9 May 2009 01:54:09 +0000 (+0000) Subject: base-files: show reboot notification is sysupgrade X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=d8aee6e471fc0e19ba19fa20c3eb2765622d5e66;p=openwrt%2Fstaging%2Fansuel.git base-files: show reboot notification is sysupgrade SVN-Revision: 15730 --- diff --git a/package/base-files/files/lib/upgrade/common.sh b/package/base-files/files/lib/upgrade/common.sh index 7739275bec..361c73a5ee 100644 --- a/package/base-files/files/lib/upgrade/common.sh +++ b/package/base-files/files/lib/upgrade/common.sh @@ -165,5 +165,8 @@ do_upgrade() { } v "Upgrade completed" [ -n "$DELAY" ] && sleep "$DELAY" - ask_bool 1 "Reboot" && reboot + ask_bool 1 "Reboot" && { + v "Rebooting system..." + reboot + } }