summaryrefslogtreecommitdiff
path: root/etc/rc.devd
blob: 11f27ebff7d59bd3b45653af1b04fcc27d194197 (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
#!/bin/sh
# Copyright (c) 2007-2008 Roy Marples <roy@marples.name>
# Released under the 2-clause BSD license.

# Inform RC that we are in the background and hotplugged
IN_BACKGROUND=yes
IN_HOTPLUG=yes
export IN_BACKGROUND IN_HOTPLUG

getmedia() {
	ifconfig "$1" | while read line; do
		case "${line}" in
			media:" "*) echo "${line}"; return;;
		esac
	done
}

# Try and create an init script for network interfaces
if [ ! -e /etc/init.d/"$1" -a ! -e /usr/local/init.d/"$1" ]; then
	base=${1%%.*}
	if [ "${base}" = "net" ]; then
		# We only create links for pyhsical interfaces
		[ -n "$(getmedia ${1#*.})" ] || exit 1
		base="net.lo0"
	fi
	if [ -e /etc/init.d/"${base}" -a "${base}" != "$1" ]; then
		ln -s "${base}" /etc/init.d/"$1"
	fi
fi

# Run the init script
exec /etc/init.d/"$1" "$2"