aboutsummaryrefslogtreecommitdiff
path: root/examples/var_service/zcip_if/zcip_handler
blob: 625450f7bc3e5fbaa553814321ddb2344f722b8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/bin/sh
# executed by zcip
# parameters: $1 and environment
# $1 is:
#
# init: zcip starts. Environment:
# interface=eth0
#
# config: Address is obtained.
# interface=eth0
# ip=169.254.a.b
#
# deconfig: Conflict or link went down.
# interface=eth0

service=${PWD##*/}
file_ipconf="$service.ipconf"
dir_ipconf="/var/run/service/fw"

exec >/dev/null
#exec >>"$0.out"  #debug
exec 2>&1

echo "`date`: Params: $*"

if test x"$1" != x"config"; then
	# Reconfigure network with this interface disabled
	echo "Deconfiguring"
	rm "$file_ipconf"
	rm "$dir_ipconf/$file_ipconf"
	svc -u fw
	exit
fi

# "config": we've got the address
# Record information for e.g. dhcp_$IF_pinger service
env >"env.out"

./convert2ipconf "$file_ipconf"
# Reconfigure routing and firewall if needed
diff --brief "$file_ipconf" "$dir_ipconf/$file_ipconf" >/dev/null 2>&1
if test $? != 0; then
	echo "Reconfiguring fw"
	mkdir -p "$dir_ipconf" 2>/dev/null
	cp "$file_ipconf" "$dir_ipconf/$file_ipconf"
	svc -u fw
fi