mesh-vpn-openvpn: misc stuff

This commit is contained in:
Maciej Krüger 2022-04-15 04:49:09 +02:00 committed by Alexander List
parent 42aedbac82
commit edbd2a0d3f
2 changed files with 6 additions and 3 deletions

View File

@ -7,7 +7,7 @@ include ../gluon.mk
define Package/gluon-mesh-vpn-openvpn
TITLE:=Support for connecting meshes via custom openvpn configuration
DEPENDS:=+gluon-core +gluon-mesh-vpn-core +openvpn
DEPENDS:=+gluon-core +gluon-mesh-vpn-core +openvpn +lua-openssl
endef
$(eval $(call BuildPackageGluon,gluon-mesh-vpn-openvpn))

View File

@ -8,8 +8,11 @@ local uci = require('simple-uci').cursor()
-- https://stackoverflow.com/a/4991602/3990041
local function file_exists(name)
local f=io.open(name,"r")
if f~=nil then io.close(f) return true else return false end
local f = io.open(name, 'r')
if f ~= nil then
io.close(f)
return true else return false
end
end
local vpn = {