Remove the unused session bus environement setting
[platform/core/connectivity/bluetooth-tools.git] / scripts / mobile / bt-stack-up.sh
old mode 100755 (executable)
new mode 100644 (file)
index e39ff26..015d351
@@ -1,24 +1,22 @@
 #!/bin/sh
+PATH=/bin:/usr/bin:/sbin:/usr/sbin
 
 #
 # Script for executing Bluetooth stack
 #
 
+# Start HCI logging
+systemctl start bluetooth-hci-logger.service
+
 # Register BT Device
 /usr/etc/bluetooth/bt-dev-start.sh
 
 if !(/usr/bin/hciconfig | grep hci); then
        echo "Registering BT device is failed."
+       systemctl stop bluetooth-hci-logger.service
        exit 1
 fi
 
-# We have to handle both systemd and sysvinit cases differently
-if [ -d /sys/fs/cgroup/systemd ]; then
-   # bt-service changes USER to 'app' via libprivilege-control, so it needs
-   # to know where the session bus is located under systemd
-   export DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/app/dbus/user_bus_socket
-fi
-
 # Execute BlueZ BT stack
 echo "Run bluetoothd"
 /usr/libexec/bluetooth/bluetoothd -d -C &