3b58d7b329b3304c7503fc80bd00b1a54e665799
[project/luci.git] / contrib / uci / hostfiles / bin / uci-defaults
1 #!/bin/sh
2 for i in $(find $(dirname $0)/../etc/uci-defaults -type f -not -name "$2")
3 do 
4         [ -f $i ] && { 
5                 bash $i; rm $i
6         }
7 done