#!/sbin/runscript # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ start() { ebegin "Starting turnserver" start-stop-daemon --exec /usr/bin/turnserver --start --background eend $? } stop() { ebegin "Stopping turnserver" start-stop-daemon --exec /usr/bin/turnserver --stop eend $? }