blob: 43a015fb172eeb2c9da492b649f1ba1a09932016 [file] [log] [blame]
# Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
description "Start the bluetooth daemon"
author "chromium-os-dev@chromium.org"
start on started system-services
stop on stopping system-services
limit memlock unlimited unlimited
env BLUETOOTH_LIBDIR=/var/lib/bluetooth
env BLUETOOTH_DAEMON_OPTION=""
env BLUETOOTH_WANT_FILE=/var/lib/misc/bluetooth-daemon.current
pre-start script
mkdir -p -m 0750 ${BLUETOOTH_LIBDIR}
chown -R bluetooth:bluetooth ${BLUETOOTH_LIBDIR}
# Make sure file exists before accessing it
mkdir -p "$(dirname $BLUETOOTH_WANT_FILE)"
touch "$BLUETOOTH_WANT_FILE"
# Check if we want to start bluez. If "floss" is wanted instead, exit early
# without starting bluez.
want_daemon="$(cat $BLUETOOTH_WANT_FILE)"
if [ "$want_daemon" = "floss" ]; then
exit 1
fi
end script
respawn
exec /usr/bin/start_bluetoothd.sh