blob: 32b68c2dbc48d62952a20aa483bc5a29b9009ba3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/sbin/openrc-run
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
depend() {
need localmount
before net
use logger
}
start() {
ebegin "Starting rdnssd"
start-stop-daemon --start --quiet --exec /usr/sbin/rdnssd -- -u root -r /etc/resolv.conf
eend $?
}
stop() {
ebegin "Stopping rdnssd"
start-stop-daemon --stop --quiet --pidfile /run/rdnssd.pid
}
|