revert borked commit
[openwrt.git] / package / base-files / files / etc / hotplug.d / usb / 10-usb-storage
1 #!/bin/sh
2
3 # Copyright (C) 2006 OpenWrt.org
4
5 case "$ACTION" in
6 add)
7 [ -n "${INTERFACE}" ] &&
8 [ "$(expr substr ${INTERFACE} 1 2)" == "8/" ] && {
9 /sbin/usb-storage &
10 }
11 ;;
12 esac
13
This page took 0.051296 seconds and 5 git commands to generate.