remove bashism
[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 bluetooth-share
14 killall bluetooth-pb-agent
15 killall bluetooth-map-agent
16 killall bluetooth-hfp-agent
17 killall bluetoothd
18
19 # result
20 exit 0