#!/sbin/runscript depend() { need net } start() { ebegin "Starting splashd" start-stop-daemon --start --background \ --exec "/usr/local/sbin/splashd" \ >& /var/log/splashd/current eend $? } stop() { ebegin "stoping splashd" killall splashd eend $? } restart() { killall splashd splashd }