summaryrefslogtreecommitdiff
path: root/sys-apps/nca/files/ncad.initd
blob: fa2adcd9b3ecd7f82923bcf9aae93db1425e1c1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/sbin/openrc-run
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

start() {
	ebegin "Starting ${SVCNAME}"
	start-stop-daemon --start --quiet --exec /sbin/ncad
	eend ${?}
}

stop() {
	ebegin "Stopping ${SVCNAME}"
	start-stop-daemon --stop --retry 5 --quiet --exec /sbin/ncad
	eend ${?}
}