You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-wireless/neard/files/neard.rc

23 lines
417 B

#!/sbin/openrc-run
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
name="NFC daemon"
command="/usr/libexec/nfc/neard"
command_args="${NEARD_OPTS}"
start_stop_daemon_args="--exec /usr/libexec/nfc/neard"
depend() {
need dbus
}
start_pre() {
if [ -e /proc/modules ] ; then
if ! grep -qs NFC_RAW /proc/net/protocols ; then
modprobe -q nfc
fi
fi
}