generic-poky/openembedded/packages/irda-utils/files/init

30 lines
585 B
Bash
Executable File

#! /bin/sh
DESC=irattach
case "$1" in
start)
echo -n "Starting $DESC: "
irattach /dev/ttyS1 > /dev/null 2>&1 &
echo "$NAME."
;;
stop)
echo -n "Stopping $DESC: "
killall irattach > /dev/null 2>&1
echo "$NAME."
;;
restart|force-reload)
echo -n "Restarting $DESC: "
irattach /dev/ttyS1 > /dev/null 2>&1 &
sleep 1
killall irattach > /dev/null 2>&1
echo "$NAME."
;;
*)
N=/etc/init.d/$NAME
echo "Usage: $N {start|stop|restart|force-reload}" >&2
exit 1
;;
esac