luci-app-mosquitto: validate paths as path, not file 2179/head
authorKarl Palsson <karlp@etactica.com>
Mon, 24 Sep 2018 16:00:52 +0000 (16:00 +0000)
committerKarl Palsson <karlp@etactica.com>
Mon, 24 Sep 2018 16:02:24 +0000 (16:02 +0000)
luci has separate validation for directories and files, make sure to
use the right one.

Signed-off-by: Karl Palsson <karlp@etactica.com>
applications/luci-app-mosquitto/luasrc/model/cbi/mosquitto.lua

index 78bc9f071c2c3652ab24890be9d4c22505083f38..4b7582a195d425afac69040583edee06cb922c31 100644 (file)
@@ -104,7 +104,7 @@ o.optional = true
 o.datatype = "file"
 o = s:option(Value, "capath", "CA path to search")
 o.optional = true
-o.datatype = "file"
+o.datatype = "directory"
 o = s:option(Value, "certfile", "server certificate file (PEM encoded)")
 o.optional = true
 o.datatype = "file"
@@ -218,7 +218,7 @@ o.optional = true
 o.datatype = "file"
 o = s:option(Value, "capath", "Directory to search for CA files")
 o.optional = true
-o.datatype = "file"
+o.datatype = "directory"
 o = s:option(Value, "certfile", "Path to PEM encoded server certificate file")
 o.optional = true
 o.datatype = "file"