-
Notifications
You must be signed in to change notification settings - Fork 26
/
bridge-stp
executable file
·63 lines (56 loc) · 1.23 KB
/
bridge-stp
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
#!/bin/bash
#
# Script to start/stop spanning tree called from kernel
# Make sure umask is sane
umask 022
# Set up a default search path.
PATH="/sbin:/usr/sbin:/bin:/usr/bin"
export PATH
if [ $# -ne 2 ]; then
echo "Usage: bridge-stp <bridge> {start|stop}"
exit 1
fi
bridge=$1
service=rstpd
pid_file=/var/run/${service}.pid
# Set $pid to pids from /var/run* for {program}. $pid should be declared
# local in the caller.
# Returns LSB exit code for the 'status' action.
checkpid() {
pid=
if [ -f "$1" ] ; then
local line p
read line < "$pid_file"
for p in $line ; do
[ -z "${p//[0-9]/}" -a -d "/proc/$p" ] && pid="$pid $p"
done
if [ -n "$pid" ]; then
return 0
fi
return 1 # "Program is dead and /var/run pid file exists"
fi
return 3 # "Program is not running"
}
daemon() {
local pid
checkpid $pid_file
[ -n "$pid" ] && return
# start it
/sbin/rstpd
RETVAL=$?
[ $RETVAL -eq 0 ] && touch /var/lock/subsys/$service
}
start() {
daemon
}
case $2 in
start)
daemon
exec /sbin/rstpctl rstp $bridge on ;;
stop)
exec /sbin/rstpctl rstp $bridge off ;;
*)
echo "Unknown action:" $2
echo "Usage: bridge-stp <bridge> {start|stop}"
exit 1
esac