From 3df77ef5da0306276ed75d80a40aa9f1829e3627 Mon Sep 17 00:00:00 2001 From: Wolfgang Bumiller Date: Thu, 22 Apr 2021 16:01:57 +0200 Subject: [PATCH] config::acl: make /system/certificates a valid path Signed-off-by: Wolfgang Bumiller --- src/config/acl.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/acl.rs b/src/config/acl.rs index 61e507ec..04d42854 100644 --- a/src/config/acl.rs +++ b/src/config/acl.rs @@ -308,7 +308,7 @@ pub fn check_acl_path(path: &str) -> Result<(), Error> { return Ok(()); } match components[1] { - "disks" | "log" | "status" | "tasks" | "time" => { + "certificates" | "disks" | "log" | "status" | "tasks" | "time" => { if components_len == 2 { return Ok(()); }