#!/sbin/runscript # Copyright (c) 2011-2013 Sergey Popov # Distributed under the terms of the GNU General Public License v2 description="Yet Another Stupid Network Daemon (early call for LPT locking)" depend() { need logger } start() { ebegin "Starting LPT locking for yasnd" /usr/sbin/yasnd --init eend $? } stop() { eend 0 }