mirror of https://github.com/aredn/aredn.git
7 lines
131 B
Plaintext
7 lines
131 B
Plaintext
|
#! /bin/sh
|
||
|
# Disable hostapd (etc) on devices without wifi
|
||
|
|
||
|
if [ ! -d /sys/class/ieee80211 ]; then
|
||
|
/etc/init.d/wpad disable
|
||
|
fi
|