mirror of
https://github.com/novatiq/packages.git
synced 2026-04-28 06:44:40 +01:00
2e20daf7a8
bump version to 1.8.11 and add myself as maintainer Signed-off-by: Daniel Golle <daniel@makrotopia.org>
15 lines
202 B
Bash
15 lines
202 B
Bash
#!/bin/sh /etc/rc.common
|
|
# Copyright (C) 2009-2011 OpenWrt.org
|
|
|
|
START=50
|
|
|
|
SERVICE_PID_FILE=/var/run/pcscd/pcscd.pid
|
|
|
|
start() {
|
|
service_start /usr/sbin/pcscd
|
|
}
|
|
|
|
stop() {
|
|
service_stop /usr/sbin/pcscd
|
|
}
|