[openwrt/openwrt] base-files: redirect kill ouptut for ash, telnetd and dropbear
LEDE Commits
lede-commits at lists.infradead.org
Sun Jun 20 18:16:20 PDT 2021
aparcar pushed a commit to openwrt/openwrt.git, branch master:
https://git.openwrt.org/40f533b73e6cfd7376cc6a0bbef9af46c8fbed86
commit 40f533b73e6cfd7376cc6a0bbef9af46c8fbed86
Author: Florian Eckert <fe at dev.tdt.de>
AuthorDate: Tue Feb 9 16:10:10 2021 +0100
base-files: redirect kill ouptut for ash, telnetd and dropbear
If one of the programmes is not running, then we see the following
output in the logs.
`killall: telnetd: no process killed`
To ensure that the log is clean, redirect the output to /dev/null
Signed-off-by: Florian Eckert <fe at dev.tdt.de>
---
package/base-files/files/lib/upgrade/stage2 | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/package/base-files/files/lib/upgrade/stage2 b/package/base-files/files/lib/upgrade/stage2
index f2f3cd439a..13c3622f38 100755
--- a/package/base-files/files/lib/upgrade/stage2
+++ b/package/base-files/files/lib/upgrade/stage2
@@ -137,9 +137,9 @@ for service in /etc/init.d/*; do
ubus call service delete '{ "name": "'"$service"'" }' 2>/dev/null
done
-killall -9 telnetd
-killall -9 dropbear
-killall -9 ash
+killall -9 telnetd 2>/dev/null
+killall -9 dropbear 2>/dev/null
+killall -9 ash 2>/dev/null
kill_remaining TERM
sleep 4
More information about the lede-commits
mailing list