mirror of
https://github.com/openwrt/luci
synced 2025-01-09 04:28:37 +08:00
luci-proto-openconnect: fix certificate file paths
This addresses the issue of openconnect.sh from openconnect package expecting a vpn- suffix for the files, while the frontend didn't. Signed-off-by: Friendly fellow <DasTestament@users.noreply.github.com> [reword commit message] Ref: https://github.com/openwrt/packages/issues/11584 Signed-off-by: Jo-Philipp Wich <jo@mein.io>
This commit is contained in:
parent
c591490528
commit
adf0fb1879
@ -59,19 +59,19 @@ elseif arg[1] == "call" then
|
||||
|
||||
if arg[2] == "getCertificates" then
|
||||
print(json.stringify({
|
||||
user_certificate = readfile(string.format("/etc/openconnect/user-cert-%s.pem", args.interface)),
|
||||
user_privatekey = readfile(string.format("/etc/openconnect/user-key-%s.pem", args.interface)),
|
||||
ca_certificate = readfile(string.format("/etc/openconnect/ca-%s.pem", args.interface))
|
||||
user_certificate = readfile(string.format("/etc/openconnect/user-cert-vpn-%s.pem", args.interface)),
|
||||
user_privatekey = readfile(string.format("/etc/openconnect/user-key-vpn-%s.pem", args.interface)),
|
||||
ca_certificate = readfile(string.format("/etc/openconnect/ca-vpn-%s.pem", args.interface))
|
||||
}))
|
||||
elseif arg[2] == "setCertificates" then
|
||||
if args.user_certificate then
|
||||
writefile(string.format("/etc/openconnect/user-cert-%s.pem", args.interface), args.user_certificate)
|
||||
writefile(string.format("/etc/openconnect/user-cert-vpn-%s.pem", args.interface), args.user_certificate)
|
||||
end
|
||||
if args.user_privatekey then
|
||||
writefile(string.format("/etc/openconnect/user-key-%s.pem", args.interface), args.user_privatekey)
|
||||
writefile(string.format("/etc/openconnect/user-key-vpn-%s.pem", args.interface), args.user_privatekey)
|
||||
end
|
||||
if args.ca_certificate then
|
||||
writefile(string.format("/etc/openconnect/ca-%s.pem", args.interface), args.ca_certificate)
|
||||
writefile(string.format("/etc/openconnect/ca-vpn-%s.pem", args.interface), args.ca_certificate)
|
||||
end
|
||||
print(json.stringify({ result = true }))
|
||||
end
|
||||
|
Loading…
Reference in New Issue
Block a user