/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

* debian/mandos-client.README.Debian: Document network hook facility.
* debian/mandos-client.docs (network-hooks.d): Added.
* initramfs-tools-hook: Also pass VERBOSITY to network hook.
* plugins.d/mandos-client.xml (DESCRIPTION): Document network
                                             interface selection
                                             algorithm.
  (OPTIONS/--interface): Refer to NETWORK HOOKS section.
  (OVERVIEW): Refer to password-prompt(8mandos) explicitly.
  (NETWORK HOOKS): New section.
  (FILES): Add "/lib/mandos/network-hooks.d".

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