blob: 05aec14b9163759b36eae914d49fcaa4e1d4bde2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/sbin/runscript
# Copyright 1999-2004 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,v 1.3 2004/07/15 00:47:27 agriffis Exp $
start() {
ebegin "Starting pcscd"
start-stop-daemon --start --quiet --background --exec /usr/sbin/pcscd
eend $?
}
stop() {
ebegin "Stopping pcscd"
start-stop-daemon --stop --quiet --exec /usr/sbin/pcscd
eend $?
}
|