Root/package/base-files/files/sbin/hotplug-call

1#!/bin/sh
2# Copyright (C) 2006-2010 OpenWrt.org
3
4export HOTPLUG_TYPE="$1"
5
6. /etc/functions.sh
7
8PATH=/bin:/sbin:/usr/bin:/usr/sbin
9LOGNAME=root
10USER=root
11export PATH LOGNAME USER
12
13[ \! -z "$1" -a -d /etc/hotplug.d/$1 ] && {
14    for script in $(ls /etc/hotplug.d/$1/* 2>&-); do (
15        [ -f $script ] && . $script
16    ); done
17}
18

Archive Download this file



interactive