Browse Source

base-files: Fix switch settings for uci-defaults-new.sh.

The enable and reset settings need to be added even when they're false. This is true at least for 'enable', that seems to default to true otherwise.

Signed-off-by: Vittorio Gambaletta <[email protected]>

SVN-Revision: 43887
John Crispin 11 years ago
parent
commit
31eadd07f2
1 changed files with 2 additions and 2 deletions
  1. 2 2
      package/base-files/files/lib/functions/uci-defaults-new.sh

+ 2 - 2
package/base-files/files/lib/functions/uci-defaults-new.sh

@@ -70,8 +70,8 @@ ucidef_add_switch() {
 	json_select_object switch
 
 	json_select_object $name
-	[ "$enable" -eq 1 ] && json_add_boolean enable 1
-	[ "$reset" -eq 1 ] && json_add_boolean reset 1
+	json_add_boolean enable $enable
+	json_add_boolean reset $reset
 	json_select ..
 
 	json_select ..