base-files: implement -T (--test) sysupgrade parameter to verify image without actual...
[openwrt/openwrt.git] / package / base-files / files / sbin / hotplug-call
1 #!/bin/sh
2 # Copyright (C) 2006-2010 OpenWrt.org
3
4 export HOTPLUG_TYPE="$1"
5
6 . /lib/functions.sh
7
8 PATH=/bin:/sbin:/usr/bin:/usr/sbin
9 LOGNAME=root
10 USER=root
11 export 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 }