openvpn: config is now table instead of string
This commit is contained in:
parent
6ef67f080d
commit
8c3ad7fc04
@ -1 +1 @@
|
|||||||
need_string(in_domain({'mesh_vpn', 'openvpn', 'config'}))
|
-- need_string(in_domain({'mesh_vpn', 'openvpn', ''}))
|
||||||
|
@ -6,23 +6,33 @@ local vpn_core = require 'gluon.mesh-vpn'
|
|||||||
|
|
||||||
local uci = require('simple-uci').cursor()
|
local uci = require('simple-uci').cursor()
|
||||||
|
|
||||||
|
-- https://stackoverflow.com/a/4991602/3990041
|
||||||
|
function file_exists(name)
|
||||||
|
local f=io.open(name,"r")
|
||||||
|
if f~=nil then io.close(f) return true else return false end
|
||||||
|
end
|
||||||
|
|
||||||
local enabled = vpn_core.enabled()
|
local vpn = {
|
||||||
|
enabled = vpn_core.enabled(),
|
||||||
|
|
||||||
local file = '/etc/openvpn/mesh_vpn.ovpn'
|
client = true,
|
||||||
|
dev = vpn_core.get_interface(),
|
||||||
|
dev_type = 'tap'
|
||||||
|
}
|
||||||
|
|
||||||
-- TODO: support for directly specifying options in site conf??
|
for key, value in pairs(site.mesh_vpn.openvpn.config()) do
|
||||||
|
vpn[key] = value
|
||||||
|
end
|
||||||
|
|
||||||
fd = io.open(file, 'w')
|
-- if mesh_vpn is on but we have no key, even tho we need one then we can't proceed
|
||||||
fd:write(site.mesh_vpn.openvpn.config())
|
if vpn.key ~= nil and not file_exists(vpn.key) then
|
||||||
fd:write("\ndev " .. vpn_core.get_interface())
|
vpn.enabled = false
|
||||||
fd:close()
|
end
|
||||||
|
|
||||||
-- NOTE: ip is set by static-ip
|
-- NOTE: ip is set by static-ip
|
||||||
|
-- TODO: maybe better integration? currently we still listen to openvpn push
|
||||||
|
|
||||||
uci:section('openvpn', 'openvpn', 'mesh_vpn', {
|
uci:delete('openvpn', 'mesh_vpn')
|
||||||
enabled = enabled,
|
uci:section('openvpn', 'openvpn', 'mesh_vpn', vpn)
|
||||||
config = file,
|
|
||||||
})
|
|
||||||
|
|
||||||
uci:save('openvpn')
|
uci:save('openvpn')
|
||||||
|
@ -6,6 +6,7 @@ local vpn_core = require 'gluon.mesh-vpn'
|
|||||||
local M = {}
|
local M = {}
|
||||||
|
|
||||||
function M.public_key()
|
function M.public_key()
|
||||||
|
-- TODO: get key from openvpn.mesh_vpn.key and then get fingerprint
|
||||||
return nil
|
return nil
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user