From 934de1d69187ab91fd932fc223611f4fc504edc3 Mon Sep 17 00:00:00 2001 From: Dominik Csapak Date: Fri, 9 Jul 2021 13:43:57 +0200 Subject: [PATCH] config: acl: add PRIV_REALM_ALLOCATE will be used for realm creation/update/deletion Signed-off-by: Dominik Csapak --- src/config/acl.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/acl.rs b/src/config/acl.rs index e468586e..b4b3510f 100644 --- a/src/config/acl.rs +++ b/src/config/acl.rs @@ -72,6 +72,9 @@ constnamedbitmap! { PRIV_TAPE_WRITE("Tape.Write"); /// Tape.Read allows reading tape backup configuration and media contents PRIV_TAPE_READ("Tape.Read"); + + /// Realm.Allocate allows viewing, creating, modifying and deleting realms + PRIV_REALM_ALLOCATE("Realm.Allocate"); } }