/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-25 10:33:25 UTC
  • Revision ID: belorn@recompile.se-20111225103325-wlbwm89iy21c7mg0
renamed some foomax values to what they actually represent
fixed a very small exitstatus bug in plugin-runner

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