mesh-vpn-openvpn: misc stuff
This commit is contained in:
parent
42aedbac82
commit
edbd2a0d3f
@ -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))
|
||||
|
@ -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 = {
|
||||
|
Loading…
Reference in New Issue
Block a user