/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: Teddy Hogeborn
  • Date: 2012-01-01 05:06:20 UTC
  • mto: (237.4.29 release)
  • mto: This revision was merged to the branch mainline in revision 548.
  • Revision ID: teddy@recompile.se-20120101050620-mpqzg5l19gppibhf
Tags: version-1.5.0-1
* Makefile (version): Changed to "1.5.0".
* NEWS (Version 1.5.0): New entry.
* debian/changelog (1.5.0-1): - '' -

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
# configuration file(s) should be copied into the
7
7
# /etc/mandos/network-hooks.d directory.
8
8
9
 
# Copyright © 2011 Teddy Hogeborn
10
 
# Copyright © 2011 Björn Påhlsson
11
 
12
9
# Copying and distribution of this file, with or without modification,
13
10
# are permitted in any medium without royalty provided the copyright
14
11
# notice and this notice are preserved.  This file is offered as-is,
20
17
 
21
18
addrtoif(){
22
19
    grep -liFe "$1" /sys/class/net/*/address \
23
 
        | sed -e 's,.*/\([^/]*\)/[^/]*,\1,' -e "/^${BRIDGE}\$/d"
 
20
        | sed -e 's,.*/\([^/]*\)/[^/]*,\1,'
24
21
}
25
22
 
26
23
# Read config file, which must set "BRIDGE", "PORT_ADDRESSES", and
37
34
    exit
38
35
fi
39
36
 
40
 
brctl="/sbin/brctl"
41
 
for b in "$brctl" /usr/sbin/brctl; do
 
37
for b in /sbin/brctl /usr/sbin/brctl; do
42
38
    if [ -e "$b" ]; then
43
39
        brctl="$b"
44
40
        break
54
50
            ip link set dev "$interface" up
55
51
        done
56
52
        ip link set dev "$BRIDGE" up
57
 
        sleep "${DELAY%%.*}"
 
53
        sleep "$DELAY"
58
54
        if [ -n "$IPADDRS" ]; then
59
55
            for ipaddr in $IPADDRS; do
60
56
                ip addr add "$ipaddr" dev "$BRIDGE"