mirror of https://github.com/hak5/openwrt.git
14 lines
191 B
Plaintext
14 lines
191 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
# Copyright (C) 2006 OpenWrt.org
|
||
|
|
||
|
case "$ACTION" in
|
||
|
add)
|
||
|
[ -n "${INTERFACE}" ] &&
|
||
|
[ "$(expr substr ${INTERFACE} 1 2)" == "8/" ] && {
|
||
|
/sbin/usb-storage &
|
||
|
}
|
||
|
;;
|
||
|
esac
|
||
|
|