mirror of
https://github.com/albfan/miraclecast.git
synced 2025-02-14 20:41:54 +00:00
15 lines
271 B
Bash
Executable file
15 lines
271 B
Bash
Executable file
#!/bin/bash
|
|
|
|
. miracle-utils.sh
|
|
|
|
kill_ubuntu_network_manager
|
|
|
|
WPA_PID=$(find_wpa_supplicant_pid)
|
|
if [ -n "$WPA_PID" ]
|
|
then
|
|
echo killing existing wpa_supplicant connection
|
|
sudo kill -9 $WPA_PID
|
|
else
|
|
echo cannot find wpa_supplicant connection to kill
|
|
exit 1
|
|
fi
|