<%# Copyright 2020 Stan Grishin -%>
<%+vpn-policy-routing/css%>
<%+vpn-policy-routing/js%>
<%-
local packageName = "vpn-policy-routing"
local uci = require "luci.model.uci".cursor()
local sys = require "luci.sys"
local serviceRunning, serviceEnabled = false, false;
if sys.call("iptables -t mangle -L | grep -q VPR_PREROUTING") == 0 then
serviceRunning = true
end
if uci:get(packageName, "config", "enabled") == "1" then
serviceEnabled = true
end
if serviceEnabled then
btn_start_status = true
btn_action_status = true
btn_stop_status = true
btn_enable_status = false
btn_disable_status = true
else
btn_start_status = false
btn_action_status = false
btn_stop_status = false
btn_enable_status = true
btn_disable_status = false
end
if serviceRunning then
btn_start_status = false
btn_action_status = true
btn_stop_status = true
else
btn_action_status = false
btn_stop_status = false
end
-%>
<%+cbi/valueheader%>
<%+cbi/valuefooter%>
<%-if not btn_start_status then%>
<%-end%>
<%-if not btn_action_status then%>
<%-end%>
<%-if not btn_stop_status then%>
<%-end%>
<%-if not btn_enable_status then%>
<%-end%>
<%-if not btn_disable_status then%>
<%-end%>