summaryrefslogtreecommitdiffstats
path: root/package/ppp/files.old/etc/hotplug.d/atm/20-atm-modem
blob: 4fd9b9c66224662586401e8d39f4ca6dbc085e48 (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
#!/bin/sh

if [ "$ACTION" = "add" ]; then
	include /lib/network
	scan_interfaces

	local found=0
	local ifc
	for ifc in $interfaces; do
		local up
		config_get_bool up "$ifc" up 0

		local auto
		config_get_bool auto "$ifc" auto 1

		local proto
		config_get proto "$ifc" proto

		if [ "$proto" = "pppoa" ] && [ "$up" != 1 ] && [ "$auto" = 1 ]; then
			found=1
			( sleep 1; ifup "$ifc" ) &
		fi
	done

	if [ "$found" != 1 ]; then
		logger "Found no matching interface for DSL device $DEVICENAME"
	fi
fi