96b77fe02f3d44f316b29e16b86b562bb3a64c3d
[platform/core/connectivity/bluetooth-tools.git] / scripts / bt-stack-down.sh
1 #!/bin/sh
2
3 #
4 # Script for stopping Bluetooth stack
5 #
6
7 # Remove BT device
8 /usr/etc/bluetooth/bt-dev-end.sh
9
10 # Kill BlueZ bluetooth stack
11 killall bluetooth
12 killall obexd obex-client
13 killall bt-syspopup
14 killall bluetooth-share
15 killall bluetooth-pb-agent
16 killall bluetooth-map-agent
17 killall bluetooth-hfp-agent
18 killall bluetoothd
19
20 # result
21 exit 0