-
Notifications
You must be signed in to change notification settings - Fork 73
/
ser2net.init
65 lines (55 loc) · 952 Bytes
/
ser2net.init
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#!/bin/sh
# Startup script for ser2net
#
# chkconfig: 2345 95 20
# description: Make serial ports available to network via TCP/IP.
# Source function library.
. /etc/rc.d/init.d/functions
[ -f /usr/sbin/ser2net ] || exit 0
start() {
echo -n "Starting ser2net: "
daemon ser2net
RETVAL=$?
echo
if test $RETVAL == 0; then
touch /var/lock/subsys/ser2net
fi
return $RETVAL
}
stop() {
echo -n "Shutting down ser2net "
if test "x`pidof ser2net`" != x
then
killproc ser2net
else
success "ser2net shutdown"
fi
echo
rm -f /var/lock/subsys/ser2net
return 0
}
case "$1" in
start)
start
;;
stop)
stop
;;
status)
status ser2net
;;
restart)
stop
start
;;
condrestart)
if test "x`pidof ser2net`" != x; then
stop
start
fi
;;
*)
echo "Usage: ser2net {start|stop|restart|condrestart|status}"
exit 1
esac
exit 0