2fe37ccdf6
SVN-Revision: 7684
14 lines
191 B
Bash
14 lines
191 B
Bash
#!/bin/sh
|
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
case "$ACTION" in
|
|
add)
|
|
[ -n "${INTERFACE}" ] &&
|
|
[ "$(expr substr ${INTERFACE} 1 2)" == "8/" ] && {
|
|
/sbin/usb-storage &
|
|
}
|
|
;;
|
|
esac
|
|
|