summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Gierth2015-05-12 00:10:22 +0000
committerLars Gierth2015-05-12 23:41:41 +0000
commit3ef5c0caf4f1f2a023ff0b22742966ef77fbc467 (patch)
tree541966c904f50f54d566d06fe8f634c8ea1a5379
parent2bab58cdcb38ab57095d64f8f216631027266a69 (diff)
downloadrouting-3ef5c0caf4f1f2a023ff0b22742966ef77fbc467.tar.gz
luci-app-cjdns: add seccomp checkbox
Signed-off-by: Lars Gierth <larsg@systemli.org>
-rw-r--r--luci-app-cjdns/luasrc/model/cbi/cjdns/settings.lua4
1 files changed, 4 insertions, 0 deletions
diff --git a/luci-app-cjdns/luasrc/model/cbi/cjdns/settings.lua b/luci-app-cjdns/luasrc/model/cbi/cjdns/settings.lua
index bbe89df..d188915 100644
--- a/luci-app-cjdns/luasrc/model/cbi/cjdns/settings.lua
+++ b/luci-app-cjdns/luasrc/model/cbi/cjdns/settings.lua
@@ -33,6 +33,10 @@ apt.datatype = "port"
apw = s:taboption("admin", Value, "admin_password", translate("Password"))
apw.datatype = "string"
+-- Security
+s:tab("security", translate("Security"), translate("Functionality related to hardening the cjdroute process."))
+s:taboption("security", Flag, "seccomp", translate("SecComp sandboxing"))
+
-- UDP Interfaces
udp_interfaces = m:section(TypedSection, "udp_interface", translate("UDP Interfaces"),
translate("These interfaces allow peering via public IP networks, such as the Internet, or many community-operated wireless networks. IPv6 addresses should be entered with square brackets, like so: <code>[2001::1]</code>."))