diff --git a/proxmox-access-control/src/acl.rs b/proxmox-access-control/src/acl.rs index d0449d9a..5ff47e45 100644 --- a/proxmox-access-control/src/acl.rs +++ b/proxmox-access-control/src/acl.rs @@ -641,6 +641,9 @@ pub fn save_config(acl: &AclTree) -> Result<(), Error> { let conf = acl_config(); replace_privileged_config(conf, &raw)?; + // increase cache generation so we reload it next time we access it + access_conf().increment_cache_generation()?; + Ok(()) }