blob: 7da2c8cd2ec5a67fa8ac31d8affed1f2dc85ad02 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/sbin/runscript
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-libs/libchipcard/files/chipcardd4,v 1.3 2010/01/07 10:40:19 ssuominen Exp $
depend() {
need hald
}
start() {
ebegin "Starting chipcard4 daemon"
start-stop-daemon --start --quiet --exec /usr/sbin/chipcardd4
eend $?
}
stop() {
ebegin "Stopping chipcard4 daemon"
start-stop-daemon --stop --quiet --exec /usr/sbin/chipcardd4
eend $?
}
|