#!/usr/bin/ash
#
# This file is part of mkinitcpio-bluetooth.  mkinitcpio-bluetooth
# is free software: you can redistribute it and/or modify it under the terms 
# of the GNU General Public License as published by the Free Software Foundation, 
# version 2.
#
# This program is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
# details.
#   
# You should have received a copy of the GNU General Public License along with
# this program; if not, write to the Free Software Foundation, Inc., 51
# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#   
# Based on mkinitcpio-bluetooth-input by Aline Freitas <aline@alinefreitas.com.br>
# Copyright Robert Maerz

run_earlyhook()	{
	msg ":: Activating dbus..."
	/bin/sh -c "mkdir /run/dbus/"
	/bin/sh -c "/usr/bin/dbus-daemon --system --syslog-only"
}

run_hook()	{
	msg ":: Activating bluetoothd..."
	/bin/sh -c "/usr/lib/bluetooth/bluetoothd &"
}

run_cleanuphook() {
	msg ":: Deactivating bluetoothd..."
	killall bluetoothd
	msg ":: Deactivating dbus..."
	killall dbus-daemon
}
