summaryrefslogtreecommitdiffstats
path: root/net/unbound/files/unbound.init
blob: 4e700e445802d0ba897ad8b929f91dbf978f4f75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh /etc/rc.common
#Copyright (C) 2010 Ondrej Caletka <o.caletka@sh.cvut.cz>
START=61

start () {
	unbound
}

stop () {
	PIDFILE='/var/run/unbound.pid'
	if [ -f $PIDFILE ] ; then
		kill $(cat $PIDFILE)
	fi
}