/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-12-20 20:13:36 UTC
  • mfrom: (505.3.26 client-network-hooks)
  • mto: This revision was merged to the branch mainline in revision 525.
  • Revision ID: belorn@recompile.se-20111220201336-zs7sj3inc9wtioau
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
 
32
39
case "$1" in
33
40
    start)
34
 
        /usr/sbin/brctl addbr "$BRIDGE"
 
41
        "$brctl" addbr "$BRIDGE"
35
42
        for port in $PORTS; do
36
 
            /usr/sbin/brctl addif "$BRIDGE" "$port"
 
43
            "$brctl" addif "$BRIDGE" "$port"
 
44
            ip link set up "$port"
37
45
        done
38
46
        ip link set up "$BRIDGE"
 
47
        sleep "$DELAY"
39
48
        if [ -n "$IPADDRS" ]; then
40
49
            for ipaddr in $IPADDRS; do
41
50
                ip addr add "$ipaddr" dev "$BRIDGE"
50
59
    stop)
51
60
        ip link set down "$BRIDGE"
52
61
        for port in $PORTS; do
53
 
            /usr/sbin/brctl delif "$BRIDGE" "$port"
 
62
            ip link set down "$port"
 
63
            "$brctl" delif "$BRIDGE" "$port"
54
64
        done
55
 
        /usr/sbin/brctl delbr "$BRIDGE"
 
65
        "$brctl" delbr "$BRIDGE"
56
66
        ;;
57
67
    files)
58
68
        echo /bin/ip
59
 
        echo /usr/sbin/brctl
 
69
        echo "$brctl"
60
70
        ;;
61
71
    modules)
62
72
        echo bridge