summaryrefslogtreecommitdiff
blob: 15a342cc63006102336f1a25e18ea6c605c2294a (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-libs/chipcard-server/files/chipcardd2,v 1.1 2004/12/21 19:17:37 hanno Exp $

start() {
    ebegin "Starting chipcard2 daemon"
    start-stop-daemon --start --quiet --exec /usr/sbin/chipcardd2
    eend $?
}

stop() {
    ebegin "Stopping chipcard2 daemon"
    start-stop-daemon --stop --quiet --exec /usr/sbin/chipcardd2
    eend $?
}