/mandos/trunk

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/trunk

« back to all changes in this revision

Viewing changes to network-hooks.d/bridge

  • Committer: Björn Påhlsson
  • Date: 2011-11-24 21:32:23 UTC
  • mfrom: (505.3.12 client-network-hooks)
  • mto: This revision was merged to the branch mainline in revision 525.
  • Revision ID: belorn@fukt.bsnet.se-20111124213223-er6pl323sru1y0sz
merge

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
    exit
30
30
fi
31
31
 
32
 
for b in /sbin/brctl /usr/sbin/brctl; do
33
 
    if [ -e "$b" ]; then
34
 
        brctl="$b"
35
 
        break
36
 
    fi
37
 
done
38
 
 
39
32
case "$1" in
40
33
    start)
41
 
        "$brctl" addbr "$BRIDGE"
 
34
        brctl addbr "$BRIDGE"
42
35
        for port in $PORTS; do
43
 
            "$brctl" addif "$BRIDGE" "$port"
44
 
            ip link set up "$port"
 
36
            brctl addif "$BRIDGE" "$port"
45
37
        done
46
38
        ip link set up "$BRIDGE"
47
 
        sleep "$DELAY"
48
39
        if [ -n "$IPADDRS" ]; then
49
40
            for ipaddr in $IPADDRS; do
50
41
                ip addr add "$ipaddr" dev "$BRIDGE"
59
50
    stop)
60
51
        ip link set down "$BRIDGE"
61
52
        for port in $PORTS; do
62
 
            ip link set down "$port"
63
 
            "$brctl" delif "$BRIDGE" "$port"
 
53
            brctl delif "$BRIDGE" "$port"
64
54
        done
65
 
        "$brctl" delbr "$BRIDGE"
 
55
        brctl delbr "$BRIDGE"
66
56
        ;;
67
57
    files)
68
58
        echo /bin/ip
69
 
        echo "$brctl"
70
 
        ;;
71
 
    modules)
72
 
        echo bridge
 
59
        echo /usr/bin/brctl
73
60
        ;;
74
61
esac