Update create_ap

This commit is contained in:
Ahmed Mokhtar
2014-09-18 01:54:27 +03:00
parent f589df0565
commit 04c5695c8e

View File

@ -196,6 +196,17 @@ get_avail_bridge() {
done
}
get_virt_iface_name() {
i=0
while :; do
if [[ ! -d /sys/class/net/ap${i} ]]; then
echo ap${i}
break
fi
i=$((i+1))
done
}
get_new_macaddr() {
OLDMAC=$(get_macaddr "$1")
for i in {20..255}; do
@ -654,14 +665,7 @@ CONFDIR=$(mktemp -d /tmp/create_ap.${WIFI_IFACE}.conf.XXXXXXXX)
echo "Config dir: $CONFDIR"
if [[ $NO_VIRT -eq 0 ]]; then
i=0
while :; do
if [[ ! -d /sys/class/net/ap${i} ]]; then
VWIFI_IFACE=ap${i}
break
fi
i=$((i+1))
done
VWIFI_IFACE=$(get_virt_iface_name)
# in NetworkManager 0.9.10 and above we can set the interface as unmanaged without
# the need of MAC address, so we set it before we create the virtual interface.