summaryrefslogtreecommitdiffstats
path: root/abs/mv-core/runit-scripts-mv/runitscripts/services/ncidd/run
blob: 6fff089be40c43b2e98906b3e86a5d4355113fbb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh
exec 2>&1
export TERM=linux
. /etc/rc.conf
. /etc/rc.d/functions

which ncidd > /dev/null 2>/dev/null
if [ $? = 0 ]
then
	stat_runit "Starting CallerID"
	
	exec /usr/sbin/ncidd -D 2>&1 
fi