blob: 8612fcea08b4e6cf4a074262aa1d9fda5c651bfb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/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"
. /etc/rc.subr
name="pcscd"
rcvar=pcscd_enable
command="%%PREFIX%%/sbin/pcscd"
load_rc_config "$name"
: ${pcscd_enable="NO"}
run_rc_command "$1"
|