diff --git a/configfiles/opwifi b/configfiles/opwifi index 76de95b..fe4946b 100644 --- a/configfiles/opwifi +++ b/configfiles/opwifi @@ -5,16 +5,13 @@ STOP=10 start() { /sbin/wifi up - return 0 } stop() { /sbin/wifi down - return 0 } restart() { - if stop; then - start - fi + stop + start }