OpenRC script for LPT locking on boot

This commit is contained in:
Sergey Popov 2012-03-18 14:15:17 +04:00
parent 012f3ce8ca
commit a528959369

21
contrib/yasnd-early.openrc Executable file
View File

@ -0,0 +1,21 @@
#!/sbin/runscript
# Copyright (c) 2011 Sergey Popov <admin@pinkbyte.ru>
# All rights reserved. Released under the 2-clause BSD license.
description="Yet Another Stupid Network Daemon (early call for LPT locking)"
depend()
{
need logger
}
start()
{
ebegin "Starting LPT locking for yasnd"
/sbin/yasnd --init
eend $?
}
stop()
{
}