diff options
author | Dirk Brenken <dev@brenken.org> | 2024-03-18 22:25:16 +0100 |
---|---|---|
committer | Dirk Brenken <dev@brenken.org> | 2024-03-18 22:25:16 +0100 |
commit | 81496b88daf004ff2622bf8f47dbe6288abf8b26 (patch) | |
tree | db3e554377d7e6f3c0da57596e1c27b62f5e40e4 | |
parent | 6b5c400c7bcd92632a134b3e80e7c15c16350578 (diff) |
luci-app-travelmate: disable vpn processing by default
Signed-off-by: Dirk Brenken <dev@brenken.org>
-rw-r--r-- | applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js b/applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js index 55a3826377..dc291c7538 100644 --- a/applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js +++ b/applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js @@ -316,7 +316,7 @@ return view.extend({ o.rmempty = false; o = s.taboption('general', form.Flag, 'trm_vpn', _('VPN processing'), _('VPN connections will be managed by travelmate.')); - o.default = 1; + o.default = 0; o.rmempty = false; o = s.taboption('general', widgets.NetworkSelect, 'trm_vpnifacelist', _('Limit VPN processing'), _('Limit VPN processing to certain interfaces.')); |