/mandos/release

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/release

« 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:
31
31
 
32
32
case "$1" in
33
33
    start)
34
 
        /usr/sbin/brctl addbr "$BRIDGE"
 
34
        brctl addbr "$BRIDGE"
35
35
        for port in $PORTS; do
36
 
            /usr/sbin/brctl addif "$BRIDGE" "$port"
 
36
            brctl addif "$BRIDGE" "$port"
37
37
        done
38
38
        ip link set up "$BRIDGE"
39
39
        if [ -n "$IPADDRS" ]; then
50
50
    stop)
51
51
        ip link set down "$BRIDGE"
52
52
        for port in $PORTS; do
53
 
            /usr/sbin/brctl delif "$BRIDGE" "$port"
 
53
            brctl delif "$BRIDGE" "$port"
54
54
        done
55
 
        /usr/sbin/brctl delbr "$BRIDGE"
 
55
        brctl delbr "$BRIDGE"
56
56
        ;;
57
57
    files)
58
58
        echo /bin/ip
59
 
        echo /usr/sbin/brctl
60
 
        ;;
61
 
    modules)
62
 
        echo bridge
 
59
        echo /usr/bin/brctl
63
60
        ;;
64
61
esac