Kill bluetooth-share process in BT off time
[platform/core/connectivity/bluetooth-tools.git] / scripts / mobile / 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 obexd obex-client
12 killall bt-syspopup
13 killall bluetooth-pb-agent
14 killall bluetooth-map-agent
15 killall bluetooth-hfp-agent
16 killall bluetooth-ag-agent
17 killall bluetoothd
18 killall bluetooth-share
19
20 # result
21 exit 0