diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2011-10-27 16:52:31 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2011-10-27 16:52:31 +0000 |
commit | 1b7836ca8c465cca7a2765025d17b0cc877b77dc (patch) | |
tree | ab9c109329b45db569595901df915f173f19fb53 /package/base-files/files/sbin/sysupgrade | |
parent | 356538e943156a232f9c6a1fb3e6160d4c87bb4e (diff) | |
download | master-187ad058-1b7836ca8c465cca7a2765025d17b0cc877b77dc.tar.gz master-187ad058-1b7836ca8c465cca7a2765025d17b0cc877b77dc.tar.bz2 master-187ad058-1b7836ca8c465cca7a2765025d17b0cc877b77dc.zip |
[package] base-files: sysupgrade: kill all but essential processes before starting the update
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28626 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/base-files/files/sbin/sysupgrade')
-rwxr-xr-x | package/base-files/files/sbin/sysupgrade | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/package/base-files/files/sbin/sysupgrade b/package/base-files/files/sbin/sysupgrade index 7efb2b4365..d251cc914f 100755 --- a/package/base-files/files/sbin/sysupgrade +++ b/package/base-files/files/sbin/sysupgrade @@ -127,6 +127,11 @@ elif ask_bool $SAVE_CONFIG "Keep config files over reflash"; then else export SAVE_CONFIG=0 fi + +kill_remaining TERM +sleep 3 +kill_remaining KILL + run_hooks "" $sysupgrade_pre_upgrade if [ -n "$(rootfs_type)" ]; then |