blob: 3dd564f9a31740713662d127fd34e24e284b3b24 [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
env BLUETOOTH_LIBDIR=/var/lib/bluetooth
env BLUETOOTH_RUNDIR=/run/bluetooth
env BLUETOOTH_DAEMON_OPTION=""
pre-start script
mkdir -p -m 0750 ${BLUETOOTH_LIBDIR} ${BLUETOOTH_RUNDIR}
chown -R bluetooth:bluetooth ${BLUETOOTH_LIBDIR} ${BLUETOOTH_RUNDIR}
end script
respawn
script
ulimit -l unlimited
exec /usr/bin/start_bluetoothd.sh
end script