openrc/etc.FreeBSD/rc.devd

32 lines
790 B
Plaintext
Raw Normal View History

2007-11-23 17:46:12 +05:30
#!/bin/sh
# Copyright 2007-2008 Roy Marples <roy@marples.name>
# All rights reserved. Released under the 2-clause BSD license.
2007-11-23 17:46:12 +05:30
2007-12-28 02:11:08 +05:30
# Inform RC that we are in the background and hotplugged
2007-11-23 17:46:12 +05:30
export IN_BACKGROUND=yes
export IN_HOTPLUG=yes
getmedia() {
2007-12-28 02:11:08 +05:30
ifconfig "$1" | while read line; do
case "${line}" in
2007-11-23 17:46:12 +05:30
media:" "*) echo "${line}"; return;;
esac
done
}
2007-12-28 02:11:08 +05:30
# Try and create an init script for network interfaces
2008-01-07 03:26:13 +05:30
if [ ! -e /etc/init.d/"$1" -a ! -e /usr/local/init.d/"$1" ]; then
base=${1%%.*}
2007-11-23 17:46:12 +05:30
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
2007-12-28 02:11:08 +05:30
ln -s "${base}" /etc/init.d/"$1"
2007-11-23 17:46:12 +05:30
fi
fi
2007-12-28 02:11:08 +05:30
# Run the init script
exec /etc/init.d/"$1" "$2"