Add the default path in the script file
[platform/core/connectivity/bluetooth-tools.git] / scripts / bt-edutm-off.sh
1 #!/bin/sh
2 PATH=/bin:/usr/bin:/sbin:/usr/sbin
3
4 #
5 # Script for turning off Bluetooth(EDUTM)
6 #
7
8 # Kill BlueZ bluetooth stack
9 /usr/bin/killall bluetoothd
10
11 # Remove BT device
12 /usr/etc/bluetooth/bt-dev-end.sh
13
14 # result
15 exit 0