summaryrefslogtreecommitdiff
blob: 3e18391566f1a8e7273d87475d8be83a3057575a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/sbin/runscript
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

start(){
	ebegin "Starting ypd"
	start-stop-daemon --start --background --make-pidfile --pidfile /var/run/ypd.pid  --quiet --exec /usr/bin/ypd
	eend $?
}

stop(){
	ebegin "Stopping ypd"
	start-stop-daemon --stop --quiet --exec /usr/bin/ypd
	eend $?
}