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