Show virtual interface in `--list-running'
This commit is contained in:
parent
c04cce072c
commit
33ed352b5c
17
create_ap
17
create_ap
@ -766,7 +766,7 @@ list_running_conf() {
|
||||
local x
|
||||
mutex_lock
|
||||
for x in /tmp/create_ap.*; do
|
||||
if [[ -f $x/pid && -d /proc/$(cat $x/pid) ]]; then
|
||||
if [[ -f $x/pid && -f $x/wifi_iface && -d /proc/$(cat $x/pid) ]]; then
|
||||
echo $x
|
||||
fi
|
||||
done
|
||||
@ -774,12 +774,18 @@ list_running_conf() {
|
||||
}
|
||||
|
||||
list_running() {
|
||||
local IFACE x
|
||||
local IFACE wifi_iface x
|
||||
mutex_lock
|
||||
for x in $(list_running_conf); do
|
||||
IFACE=${x#*.}
|
||||
IFACE=${IFACE%%.*}
|
||||
wifi_iface=$(cat $x/wifi_iface)
|
||||
|
||||
if [[ $IFACE == $wifi_iface ]]; then
|
||||
echo $(cat $x/pid) $IFACE
|
||||
else
|
||||
echo $(cat $x/pid) $IFACE '('$(cat $x/wifi_iface)')'
|
||||
fi
|
||||
done
|
||||
mutex_unlock
|
||||
}
|
||||
@ -892,7 +898,7 @@ send_stop() {
|
||||
fi
|
||||
|
||||
# send stop signal to specific interface
|
||||
for x in $(list_running | grep -E " ${1}\$" | cut -f1 -d' '); do
|
||||
for x in $(list_running | grep -E " \(?${1}( |\)?\$)" | cut -f1 -d' '); do
|
||||
kill -USR1 $x
|
||||
done
|
||||
mutex_unlock
|
||||
@ -1435,6 +1441,11 @@ else
|
||||
OLD_MACADDR=$(get_macaddr ${WIFI_IFACE})
|
||||
fi
|
||||
|
||||
mutex_lock
|
||||
echo $WIFI_IFACE > $CONFDIR/wifi_iface
|
||||
chmod 444 $CONFDIR/wifi_iface
|
||||
mutex_unlock
|
||||
|
||||
can_transmit_to_channel ${WIFI_IFACE} ${CHANNEL} || die "Your adapter can not transmit to channel ${CHANNEL}, frequency band ${FREQ_BAND}GHz."
|
||||
|
||||
if networkmanager_is_running && ! networkmanager_iface_is_unmanaged ${WIFI_IFACE}; then
|
||||
|
Loading…
Reference in New Issue
Block a user