From 43634283b4cd4cfd62563d32435d03b95091ed7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=A1=90=E8=AF=9D?= <49544781+xiaomeng9597@users.noreply.github.com> Date: Tue, 21 May 2024 06:13:39 +0800 Subject: [PATCH] update opwifi --- configfiles/opwifi | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/configfiles/opwifi b/configfiles/opwifi index fe4946b..0df6128 100644 --- a/configfiles/opwifi +++ b/configfiles/opwifi @@ -4,6 +4,7 @@ START=99 STOP=10 start() { + sleep 60 /sbin/wifi up } @@ -12,6 +13,6 @@ stop() { } restart() { - stop - start + /sbin/wifi down + /sbin/wifi up }