View Single Post
Posts: 1,808 | Thanked: 4,272 times | Joined on Feb 2011 @ Germany
#6
Could cron-run this if/as necessary:

--
for d in $(find /var/lib/connman -type d -name wifi_\*); do
if [ -f "$d/settings" ]; then echo "KEEP $d"; else echo "KILL $d";
fi;
done
--

(you will have to do the obvious change from echo to rm, but want to keep the snippet safe..)
 

The Following 5 Users Say Thank You to reinob For This Useful Post: