remove unnecessary --make-pidfile option from init script. Fix copyright header

This commit is contained in:
Sergey Popov 2012-01-03 03:51:11 +04:00
parent 9668922f8f
commit 5e3891a985

View File

@ -1,5 +1,5 @@
#!/sbin/runscript
# Copyright (c) 2011 Serget Popov <admin@pinkbyte.ru>
# Copyright (c) 2011 Sergey Popov <admin@pinkbyte.ru>
# All rights reserved. Released under the 2-clause BSD license.
extra_started_commands="reload"
@ -14,7 +14,7 @@ depend()
start()
{
ebegin "Starting yasnd"
start-stop-daemon --start --background --quiet --make-pidfile --pidfile /var/run/yasnd.pid --exec /sbin/yasnd
start-stop-daemon --start --background --quiet --pidfile /var/run/yasnd.pid --exec /sbin/yasnd
eend $?
}