]> git.meshlink.io Git - catta/blob - avahi-autoipd/avahi-autoipd.action.linux
get rid of a lot of old svn cruft
[catta] / avahi-autoipd / avahi-autoipd.action.linux
1 #!/bin/sh
2
3 # This file is part of avahi.
4
5 # avahi is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU Lesser General Public License as
7 # published by the Free Software Foundation; either version 2 of the
8 # License, or (at your option) any later version.
9 #
10 # avahi is distributed in the hope that it will be useful, but WITHOUT
11 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
13 # License for more details.
14 #
15 # You should have received a copy of the GNU Lesser General Public
16 # License along with avahi; if not, write to the Free Software
17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
18 # USA.
19
20 set -e
21
22 # Command line arguments:
23 #   $1 event that happened:
24 #          BIND:     Successfully claimed address
25 #          CONFLICT: An IP address conflict happened
26 #          UNBIND:   The IP address is no longer needed
27 #          STOP:     The daemon is terminating
28 #   $2 interface name
29 #   $3 IP adddress
30
31 if [ -x /bin/ip -o -x /sbin/ip ] ; then
32
33     # We have the Linux ip tool from the iproute package
34
35     case "$1" in
36         BIND)
37             ip addr add "$3"/16 brd 169.254.255.255 label "$2:avahi" scope link dev "$2" 
38             ;;
39
40         CONFLICT|UNBIND|STOP)
41             ip addr del "$3"/16 brd 169.254.255.255 label "$2:avahi" scope link dev "$2" 
42             ;;
43
44         *)
45             echo "Unknown event $1" >&2
46             exit 1
47             ;;
48     esac
49
50 elif [ -x /bin/ifconfig -o -x /sbin/ifconfig ] ; then
51
52     # We have the old ifconfig tool
53
54     case "$1" in
55         BIND)
56             ifconfig "$2:avahi" inet "$3" netmask 255.255.0.0 broadcast 169.254.255.255 up
57             ;;
58
59         CONFLICT|STOP|UNBIND)
60             ifconfig "$2:avahi" down
61             ;;
62
63         *)
64             echo "Unknown event $1" >&2
65             exit 1
66             ;;
67     esac
68
69 else
70
71     echo "No network configuration tool found." >&2
72     exit 1
73
74 fi
75
76 exit 0