Don't allow the admins or editors groups to be removed.

Don't allow the default group for users to be removed.
This commit is contained in:
Rob Crittenden
2007-11-30 12:49:08 -05:00
parent 72595ab1a5
commit bac556557d
2 changed files with 25 additions and 0 deletions

View File

@@ -162,3 +162,18 @@ CONNECTION_UNWILLING = gen_error_code(
CONNECTION_CATEGORY,
0x0004,
"Account inactivated. Server is unwilling to perform.")
#
# Configuration errors
#
CONFIGURATION_CATEGORY = 0x0004
CONFIG_REQUIRED_GROUPS = gen_error_code(
CONFIGURATION_CATEGORY,
0x0001,
"The admins and editors groups are required.")
CONFIG_DEFAULT_GROUP = gen_error_code(
CONFIGURATION_CATEGORY,
0x0002,
"You cannot remove the default users group.")

View File

@@ -1201,6 +1201,16 @@ class IPAServer:
if group is None:
raise ipaerror.gen_exception(ipaerror.LDAP_NOT_FOUND)
# We have 2 special groups, don't allow them to be removed
if "admins" in group.get('cn') or "editors" in group.get('cn'):
raise ipaerror.gen_exception(ipaerror.CONFIG_REQUIRED_GROUPS)
# Don't allow the default user group to be removed
config=self.get_ipa_config(opts)
default_group = self.get_entry_by_cn(config.get('ipadefaultprimarygroup'), None, opts)
if group_dn == default_group.get('dn'):
raise ipaerror.gen_exception(ipaerror.CONFIG_DEFAULT_GROUP)
conn = self.getConnection(opts)
try:
res = conn.deleteEntry(group_dn)