806f50fd6e48fa0739970bcd7316769167d308f1
[platform/core/connectivity/bluetooth-tools.git] / scripts / etc / bt-stack-down.sh
1 #!/bin/sh
2 PATH=/bin:/usr/bin:/sbin:/usr/sbin
3
4 #
5 # Script for stopping Bluetooth stack
6 #
7
8 # Remove BT device
9 /usr/etc/bluetooth/bt-dev-end.sh
10
11 # Kill BlueZ bluetooth stack
12 killall bluetooth
13 killall obexd obex-client
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