summaryrefslogtreecommitdiff
blob: c6c2dc71d1d8df7ef90ca839fa0b6d5c3febb6bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/sbin/openrc-run
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Purpose 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
}