#!/bin/sh
#
# ypbind.service - ypbind(8) service file
#

case $1 in
start)
	/usr/sbin/ypbind
	;;
stop)	killall -q ypbind
	;;
*)
	echo "usage: $0 start|stop"
esac
