organized bitbake recipes in directories. deleted obsolete .bb files
git-svn-id: https://vsmartcard.svn.sourceforge.net/svnroot/vsmartcard@398 96b47cad-a561-4643-ad3b-153ac7d7599c
This commit is contained in:
32
bitbake/pcsc-lite/files/pcscd.init
Executable file
32
bitbake/pcsc-lite/files/pcscd.init
Executable file
@@ -0,0 +1,32 @@
|
||||
#!/bin/sh
|
||||
DAEMON=/usr/sbin/pcscd
|
||||
NAME=pcscd
|
||||
DESC="PCSC Daemon"
|
||||
PIDFILE=/var/run/pcscd/pcscd.pid
|
||||
ARGS=""
|
||||
|
||||
test -f $DAEMON || exit 0
|
||||
|
||||
case "$1" in
|
||||
start)
|
||||
echo -n "Starting $DESC: $NAME"
|
||||
start-stop-daemon --start --quiet --pidfile $PIDFILE --exec $DAEMON -- $ARGS
|
||||
echo "."
|
||||
;;
|
||||
stop)
|
||||
echo -n "Stopping $DESC: $NAME"
|
||||
start-stop-daemon --stop --quiet --pidfile $PIDFILE --exec $DAEMON
|
||||
echo "."
|
||||
;;
|
||||
restart)
|
||||
$0 stop
|
||||
sleep 1
|
||||
$0 start
|
||||
;;
|
||||
*)
|
||||
echo "Usage: $0 {start|stop|restart}"
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
exit 0
|
||||
Reference in New Issue
Block a user