asuswrt-merlin.ng/release/src-rt-5.02axhnd.675x/targets/fs.src/rom/etc/hp_wrapper.sh

19 lines
327 B
Bash
Executable file

#!/bin/sh
case "$ACTION" in
"change")
/sbin/hotplug $1
;;
"add")
/sbin/mdev $1
if [ -x "/sbin/hotplug" ]; then
/sbin/hotplug $1
fi
;;
"remove")
if [ -x "/sbin/hotplug" ]; then
/sbin/hotplug $1
fi
/sbin/mdev $1
;;
esac