blob: f644e5929577616ca73ce9254e1750d4019cfa2b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#! /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
|