diff options
author | Roy Marples <roy@marples.name> | 2008-03-25 14:06:05 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2008-03-25 14:06:05 +0000 |
commit | 55eb3794fb4ad563102d5ab30c1d5337a599b2e5 (patch) | |
tree | 0d052faeb050c1e18ba56f6f6189bff3ffca28c9 /etc.FreeBSD/rc.devd | |
parent | 08aff6ef44ac5dc438d916b53aa61385f6d299f3 (diff) |
Rework our folder structure so that we don't have OS specific dirs, making it easier to share init and conf files per OS.
Diffstat (limited to 'etc.FreeBSD/rc.devd')
-rw-r--r-- | etc.FreeBSD/rc.devd | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/etc.FreeBSD/rc.devd b/etc.FreeBSD/rc.devd deleted file mode 100644 index f44d9acb..00000000 --- a/etc.FreeBSD/rc.devd +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/sh -# Copyright 2007-2008 Roy Marples <roy@marples.name> -# All rights reserved. Released under the 2-clause BSD license. - -# Inform RC that we are in the background and hotplugged -export IN_BACKGROUND=yes -export IN_HOTPLUG=yes - -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" |