<%# Copyright 2019 Stan Grishin -%> <%- local packageName = "vpnbypass" local tmpfsStatus = "Stopped" local enabledFlag = luci.model.uci.cursor():get(packageName, "config", "enabled") if luci.sys.call("iptables -t mangle -L | grep -q " .. packageName:upper()) == 0 then tmpfsStatus = "Running" end if tmpfsStatus == "Stopped" then btn_start_style = "cbi-button cbi-button-apply important" btn_action_style = "cbi-button cbi-button-apply important" btn_stop_style = "cbi-button cbi-button-reset -disabled" else btn_start_style = "cbi-button cbi-button-apply -disabled" btn_action_style = "cbi-button cbi-button-apply important" btn_stop_style = "cbi-button cbi-button-reset important" end if enabledFlag ~= "1" then btn_start_style = "cbi-button cbi-button-apply -disabled" btn_action_style = "cbi-button cbi-button-apply -disabled" btn_enable_style = "cbi-button cbi-button-apply important" btn_disable_style = "cbi-button cbi-button-reset -disabled" else btn_enable_style = "cbi-button cbi-button-apply -disabled" btn_disable_style = "cbi-button cbi-button-reset important" end -%> <%+vpnbypass/css%> <%+vpnbypass/js%>