/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:
41
41
        "$brctl" addbr "$BRIDGE"
42
42
        for port in $PORTS; do
43
43
            "$brctl" addif "$BRIDGE" "$port"
44
 
            ip link set up "$port"
45
44
        done
46
45
        ip link set up "$BRIDGE"
47
 
        sleep "$DELAY"
48
46
        if [ -n "$IPADDRS" ]; then
49
47
            for ipaddr in $IPADDRS; do
50
48
                ip addr add "$ipaddr" dev "$BRIDGE"
59
57
    stop)
60
58
        ip link set down "$BRIDGE"
61
59
        for port in $PORTS; do
62
 
            ip link set down "$port"
63
60
            "$brctl" delif "$BRIDGE" "$port"
64
61
        done
65
62
        "$brctl" delbr "$BRIDGE"