23f644637a
Update to 1.3.3
20 lines
300 B
Bash
20 lines
300 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
# PROVIDE: pcscd
|
|
# REQUIRE: LOGIN
|
|
# Add the following lines to /etc/rc.conf.local or /etc/rc.conf
|
|
# to enable this service:
|
|
#
|
|
# pcscd_enable="YES"
|
|
|
|
. %%RC_SUBR%%
|
|
|
|
name="pcscd"
|
|
rcvar="pcscd_enable"
|
|
|
|
command="%%PREFIX%%/sbin/pcscd"
|
|
|
|
load_rc_config "$name"
|
|
run_rc_command "$1"
|