Modify the install path for license file
[platform/core/connectivity/bluetooth-tools.git] / scripts / ivi / 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-hf-agent
15 killall bluetoothd
16
17 # result
18 exit 0