23 lines
525 B
Groff
23 lines
525 B
Groff
#!/sbin/runscript
|
|
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/sys-apps/pcsc-lite/files/pcscd-init.5,v 1.2 2012/12/28 11:53:28 flameeyes Exp $
|
|
|
|
name="PC/SC Daemon"
|
|
|
|
pidfile=/var/run/pcscd/pcscd.pid
|
|
|
|
command=/usr/sbin/pcscd
|
|
command_args="${EXTRA_OPTS}"
|
|
|
|
start_stop_daemon_args="--user pcscd:pcscd"
|
|
|
|
depend() {
|
|
need localmount
|
|
after udev openct
|
|
use logger
|
|
}
|
|
|
|
start_pre() {
|
|
checkpath -d -m 0755 -o pcscd:pcscd /var/run/pcscd
|
|
}
|