#!/bin/sh

# 2015-12-04 - M0E-lnx ====================================#
#                                                          #
# Send this daemon to the background and capture i's       #
# PID to be able to start/stop it properly                 #
#                                                          #
############################################################

BT_PID=""
bluez_start() {
  /usr/sbin/bluetoothd &
  BT_PID=$!
}

bluez_stop() {
  udevadm trigger --subsystem-match=bluetooth --action=remove
  if [ "x$BT_PID" != "x" ]; then
	kill -9 $BT_PID >/dev/null 2>&1
  else
        pkill -TERM bluetoothd 1>/dev/null 2>/dev/null
  fi
}

case "$1" in
  start)
    bluez_start
    ;;
  stop)
    bluez_stop
    ;;
  restart)
    bluez_stop
    sleep 1
    bluez_start
    ;;
  *)
    printf "Usage: $N {start|stop|restart}\n"
    exit 1
    ;;
esac

