/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

* network-hooks.d/bridge: Bug fix - use the found brctl.

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
 
        brctl addbr "$BRIDGE"
 
41
        "$brctl" addbr "$BRIDGE"
35
42
        for port in $PORTS; do
36
 
            brctl addif "$BRIDGE" "$port"
 
43
            "$brctl" addif "$BRIDGE" "$port"
37
44
        done
38
45
        ip link set up "$BRIDGE"
39
46
        if [ -n "$IPADDRS" ]; then
50
57
    stop)
51
58
        ip link set down "$BRIDGE"
52
59
        for port in $PORTS; do
53
 
            brctl delif "$BRIDGE" "$port"
 
60
            "$brctl" delif "$BRIDGE" "$port"
54
61
        done
55
 
        brctl delbr "$BRIDGE"
 
62
        "$brctl" delbr "$BRIDGE"
56
63
        ;;
57
64
    files)
58
65
        echo /bin/ip
59
 
        echo /usr/bin/brctl
 
66
        echo "$brctl"
 
67
        ;;
 
68
    modules)
 
69
        echo bridge
60
70
        ;;
61
71
esac