Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
# Authors: # Jr Aquino <jr.aquino@citrix.com> # # Copyright (C) 2011 Red Hat # see file 'COPYING' for use and warranty information # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>.
Auto Membership Rule.
Bring clarity to the membership of hosts and users by configuring inclusive or exclusive regex patterns, you can automatically assign a new entries into a group or hostgroup based upon attribute information.
A rule is directly associated with a group by name, so you cannot create a rule without an accompanying group or hostgroup.
A condition is a regular expression used by 389-ds to match a new incoming entry with an automember rule. If it matches an inclusive rule then the entry is added to the appropriate group or hostgroup.
A default group or hostgroup could be specified for entries that do not match any rule. In case of user entries this group will be a fallback group because all users are by default members of group specified in IPA config.
EXAMPLES:
Add the initial group or hostgroup: ipa hostgroup-add --desc="Web Servers" webservers ipa group-add --desc="Developers" devel
Add the initial rule: ipa automember-add --type=hostgroup webservers ipa automember-add --type=group devel
Add a condition to the rule: ipa automember-add-condition --key=fqdn --type=hostgroup --inclusive-regex=^web[1-9]+\.example\.com webservers ipa automember-add-condition --key=manager --type=group --inclusive-regex=^uid=mscott devel
Add an exclusive condition to the rule to prevent auto assignment: ipa automember-add-condition --key=fqdn --type=hostgroup --exclusive-regex=^web5\.example\.com webservers
Add a host: ipa host-add web1.example.com
Add a user: ipa user-add --first=Tim --last=User --password tuser1 --manager=mscott
Verify automembership: ipa hostgroup-show webservers Host-group: webservers Description: Web Servers Member hosts: web1.example.com
ipa group-show devel Group name: devel Description: Developers GID: 1004200000 Member users: tuser
Remove a condition from the rule: ipa automember-remove-condition --key=fqdn --type=hostgroup --inclusive-regex=^web[1-9]+\.example\.com webservers
Modify the automember rule: ipa automember-mod
Set the default (fallback) target group: ipa automember-default-group-set --default-group=webservers --type=hostgroup ipa automember-default-group-set --default-group=ipausers --type=group
Remove the default (fallback) target group: ipa automember-default-group-remove --type=hostgroup ipa automember-default-group-remove --type=group
Show the default (fallback) target group: ipa automember-default-group-show --type=hostgroup ipa automember-default-group-show --type=group
Find all of the automember rules: ipa automember-find
Display a automember rule: ipa automember-show --type=hostgroup webservers ipa automember-show --type=group devel
Delete an automember rule: ipa automember-del --type=hostgroup webservers ipa automember-del --type=group devel """)
# Options used by Condition Add and Remove.
Str('automemberinclusiveregex*', cli_name='inclusive_regex', label=_('Inclusive Regex'), doc=_('Inclusive Regex'), csv=True, alwaysask=True, ), Str('automemberexclusiveregex*', cli_name='exclusive_regex', label=_('Exclusive Regex'), doc=_('Exclusive Regex'), csv=True, alwaysask=True, ), Str('key', label=_('Attribute Key'), doc=_('Attribute to filter via regex. For example fqdn for a host, or manager for a user'), flags=['no_create', 'no_update', 'no_search'] ), )
StrEnum('type', label=_('Grouping Type'), doc=_('Grouping to which the rule applies'), values=(u'group', u'hostgroup', ), ), )
Str('cn', cli_name='automember_rule', label=_('Automember Rule'), doc=_('Automember Rule'), normalizer=lambda value: value.lower(), ), )
""" Bring automember to a hostgroup with an Auto Membership Rule. """
'automemberinclusiveregex', 'automemberexclusiveregex', 'cn', 'automembertargetgroup', 'description', 'automemberdefaultgroup' ]
Str('description?', cli_name='desc', label=_('Description'), doc=_('A description of this auto member rule'), ), Str('automemberdefaultgroup?', cli_name='default_group', label=_('Default (fallback) Group'), doc=_('Default group for entries to land'), flags=['no_create', 'no_update', 'no_search'] ), )
parent_dn = self.api.Object[self.parent_object].get_dn(*keys[:-1]) else:
""" Verify that the user supplied key is a valid attribute in the schema """ else: raise errors.NotFound(reason=_('%s is not a valid attribute.') % attr)
except errors.NotFound: return False
Add an automember rule. """)
raise errors.NotFound(reason=_('Auto Membership is not configured'))
Add conditions to an automember rule. """) Str('failed', label=_('Failed to add'), flags=['suppress_empty'], ), )
# Prepare the output to expect failed results output.summary, output.Entry('result'), output.value, output.Output('failed', type=dict, doc=_('Conditions that could not be added'), ), output.Output('completed', type=int, doc=_('Number of conditions added'), ), )
# Check to see if the automember rule exists except errors.NotFound: raise errors.NotFound(reason=_(u'Auto member rule: %s not found!') % keys[0]) # Define container key # Check to see if the attribute is valid
dn, [attr], normalize=self.obj.normalize_dn) entry_attrs[regex] = [entry_attrs[regex]] else: except errors.NotFound: failed['failed'][attr].append(regex)
# Set failed and completed to they can be harvested in the execute super
# Make sure to returned the failed results if there is nothing to remove dn, attrs_list, normalize=self.obj.normalize_dn )
Override this so we can add completed and failed to the return result. """)
Remove conditions from an automember rule. """)
# Prepare the output to expect failed results output.summary, output.Entry('result'), output.value, output.Output('failed', type=dict, doc=_('Conditions that could not be removed'), ), output.Output('completed', type=int, doc=_('Number of conditions removed'), ), )
assert isinstance(dn, DN) # Check to see if the automember rule exists try: (tdn, test_attrs) = ldap.get_entry(dn, []) except errors.NotFound: raise errors.NotFound(reason=_(u'Auto member rule: %s not found!') % keys[0])
# Define container key type_attr_default = {'group': 'manager', 'hostgroup': 'fqdn'} if 'key' in options: key = options['key'] else: key = type_attr_default[options['type']]
key = '%s=' % key completed = 0 failed = {'failed': {}}
# Check to see if there are existing exclusive conditions present. (dn, exclude_present) = ldap.get_entry( dn, [EXCLUDE_RE], normalize=self.obj.normalize_dn)
for attr in (INCLUDE_RE, EXCLUDE_RE): failed['failed'][attr] = [] if attr in options and options[attr]: entry_attrs[attr] = [key + condition for condition in options[attr]] (dn, entry_attrs_) = ldap.get_entry( dn, [attr], normalize=self.obj.normalize_dn ) old_entry = entry_attrs_.get(attr, []) for regex in entry_attrs[attr]: if regex in old_entry: old_entry.remove(regex) completed += 1 else: failed['failed'][attr].append(regex) entry_attrs[attr] = old_entry # Set failed and completed to they can be harvested in the execute super setattr(context, 'failed', failed) setattr(context, 'completed', completed) setattr(context, 'entry_attrs', entry_attrs)
# Make sure to returned the failed results if there is nothing to remove if completed == 0: (dn, entry_attrs) = ldap.get_entry( dn, attrs_list, normalize=self.obj.normalize_dn ) raise errors.EmptyModlist return dn
__doc__ = _(""" Override this so we can set completed and failed. """) try: result = super(automember_remove_condition, self).execute(*keys, **options) except errors.EmptyModlist: result = {'result': getattr(context, 'entry_attrs'), 'value': keys[-1]} result['failed'] = getattr(context, 'failed') result['completed'] = getattr(context, 'completed') result['value'] = keys[-1] return result
Modify an automember rule. """)
Delete an automember rule. """)
Search for automember rules. """)
'%(count)d rules matched', '%(count)d rules matched', 0 )
Display information about an automember rule. """)
Set default (fallback) group for all unmatched entries. """)
Str('automemberdefaultgroup', cli_name='default_group', label=_('Default (fallback) Group'), doc=_('Default (fallback) group for entries to land'), flags=['no_create', 'no_update'] ), ) + group_type
Remove default (fallback) group for all unmatched entries. """)
dn, [attr], normalize=self.obj.normalize_dn )
else:
Display information about the default (fallback) automember groups. """)
entry_attrs['automemberdefaultgroup'] = unicode(_('No default (fallback) group set'))
|