Browse Source

gluon-core: update lib/gluon/upgrade/150-poe-passthrough for naming within lede

kb-light 6 years ago
parent
commit
7268e49a30
1 changed files with 2 additions and 2 deletions
  1. 2 2
      package/gluon-core/luasrc/lib/gluon/upgrade/150-poe-passthrough

+ 2 - 2
package/gluon-core/luasrc/lib/gluon/upgrade/150-poe-passthrough

@@ -6,8 +6,8 @@ local site = require 'gluon.site_config'
 if (not sysconfig.gluon_version) and site.poe_passthrough then
 	local uci = require('simple-uci').cursor()
 
-	if uci:get('system', 'gpio_switch_poe_passthrough') then
-		uci:set('system', 'gpio_switch_poe_passthrough', 'value', true)
+	if uci:get('system', 'poe_passthrough') then
+		uci:set('system', 'poe_passthrough', 'value', true)
 		uci:save('system')
 	end
 end