16 lines
212 B
Plaintext
16 lines
212 B
Plaintext
5 years ago
|
#!/bin/sh
|
||
|
#
|
||
|
# Copyright (C) 2018 devolo AG
|
||
|
#
|
||
|
|
||
|
# Check if guest wifi already set
|
||
|
config_load wireless
|
||
|
|
||
|
config_get STARTTIME guest_wifi starttime
|
||
|
|
||
|
[ -n "$STARTTIME" ] && {
|
||
|
/usr/sbin/wifi_guest.sh stop 0
|
||
|
}
|
||
|
|
||
|
exit 1
|