It comes as driver in ifdhandler format for PC/SC-Lite, as CT-API driver, or as a small and lean middleware, so applications can use it with minimal overhead. OpenCT also has a primitive mechanism to export smart card readers to remote machines via tcp/ip.
22 lines
409 B
Bash
22 lines
409 B
Bash
#!@RCD_SCRIPTS_SHELL@
|
|
#
|
|
# $NetBSD: openct.sh,v 1.1.1.1 2005/07/20 03:46:44 udontknow Exp $
|
|
#
|
|
|
|
# PROVIDE: openct
|
|
# REQUIRE: DAEMON
|
|
# KEYWORD: shutdown
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="openct"
|
|
rcvar=$name
|
|
command="@PREFIX@/sbin/openct-control"
|
|
required_files="@PKG_SYSCONFDIR@/openct.conf"
|
|
|
|
start_cmd="${command} init"
|
|
stop_cmd="${command} shutdown"
|
|
status_cmd="${command} status"
|
|
|
|
load_rc_config $name
|
|
run_rc_command $1
|