From a5a787e0f774e733f3852164d5170ddc02ff4077 Mon Sep 17 00:00:00 2001 From: Adam Goldsmith Date: Thu, 21 Jul 2022 19:29:41 -0400 Subject: [PATCH] ucsAccounts: Change "Admin" group to "Database Admin" --- memberPlumbing/ucsAccounts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/memberPlumbing/ucsAccounts.py b/memberPlumbing/ucsAccounts.py index 979c1d0..4028b9f 100755 --- a/memberPlumbing/ucsAccounts.py +++ b/memberPlumbing/ucsAccounts.py @@ -12,7 +12,7 @@ from .config import Config USER_BASE = "cn=users,dc=sawtooth,dc=claremontmakerspace,dc=org" GROUP_BASE = "cn=groups,dc=sawtooth,dc=claremontmakerspace,dc=org" GROUPS_REGEX = "|".join( - ["Certified: .*", "Access .*\?", "CMS .*", "Volunteer: .*", "Admin"] + ["Certified: .*", "Access .*\?", "CMS .*", "Volunteer: .*", "Database Admin"] ) RAND_PW_LEN = 20