Branch oldpackages for 14.07
[14.07/packages.git] / utils / restorefactory / files / uci_defaults_restorefactory
1 #!/bin/sh
2
3 uci -q show system.@restorefactory[0] || {
4         uci add system restorefactory
5         uci set system.@restorefactory[0].button=reset
6         uci set system.@restorefactory[0].action=pressed
7         uci set system.@restorefactory[0].timeout=5
8         uci commit
9 }
10