Add "Admin" to UCS group regex

This commit is contained in:
Adam Goldsmith 2022-01-21 14:16:01 -05:00
parent ce2a0f4c1d
commit af6ecb2864

View File

@ -11,7 +11,9 @@ from .config import Config
USER_BASE = "cn=users,dc=sawtooth,dc=claremontmakerspace,dc=org" USER_BASE = "cn=users,dc=sawtooth,dc=claremontmakerspace,dc=org"
GROUP_BASE = "cn=groups,dc=sawtooth,dc=claremontmakerspace,dc=org" GROUP_BASE = "cn=groups,dc=sawtooth,dc=claremontmakerspace,dc=org"
GROUPS_REGEX = "|".join(["Certified: .*", "Access .*\?", "CMS .*", "Volunteer: .*"]) GROUPS_REGEX = "|".join(
["Certified: .*", "Access .*\?", "CMS .*", "Volunteer: .*", "Admin"]
)
RAND_PW_LEN = 20 RAND_PW_LEN = 20