diff options
author | Pavel Zuna <pzuna@redhat.com> | 2009-06-16 13:44:37 +0200 |
---|---|---|
committer | Rob Crittenden <rcritten@redhat.com> | 2009-07-02 13:33:01 -0400 |
commit | e1e1db9c9fc71c88e847aba8a9a02bc383317c18 (patch) | |
tree | 13f21fa86f4669710106ed8f1eb5dd812ca7e74b /ipalib/plugins/config2.py | |
parent | 8c7883364ca3c73c9e2c503428495a4405b44e39 (diff) | |
download | freeipa.git-e1e1db9c9fc71c88e847aba8a9a02bc383317c18.tar.gz freeipa.git-e1e1db9c9fc71c88e847aba8a9a02bc383317c18.tar.xz freeipa.git-e1e1db9c9fc71c88e847aba8a9a02bc383317c18.zip |
Rename plugins2 files (remove '2' suffix').
Diffstat (limited to 'ipalib/plugins/config2.py')
-rw-r--r-- | ipalib/plugins/config2.py | 183 |
1 files changed, 0 insertions, 183 deletions
diff --git a/ipalib/plugins/config2.py b/ipalib/plugins/config2.py deleted file mode 100644 index c97c5759..00000000 --- a/ipalib/plugins/config2.py +++ /dev/null @@ -1,183 +0,0 @@ -# Authors: -# Rob Crittenden <rcritten@redhat.com> -# Pavel Zuna <pzuna@redhat.com> -# -# Copyright (C) 2008 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; version 2 only -# -# 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, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - -""" -IPA configuration. -""" - -from ipalib import api, errors -from ipalib import Command -from ipalib import Int, Str - -_search_options = { - 'ipaSearchTimeLimit': 'Time limit (in seconds)', - 'ipaSearchRecordsLimit': 'Record limit', - 'ipaUserSearchFields': 'User search fields', - 'ipaGroupSearchFields': 'Group search fields', -} - -_user_options = { - 'ipaMaxUsernameLength': 'Maximum name length', - 'ipaHomesRootDir': 'Root for home directories', - 'ipaDefaultLoginShell': 'Default shell', - 'ipaDefaultPrimaryGroup': 'Default group', - 'ipaDefaultEmailDomain': 'Default e-mail domain', -} - -_options = { - 'Search': _search_options, - 'User': _user_options, -} - - -class config2_mod(Command): - """ - Modify IPA configuration options. - """ - takes_options = ( - Int('ipamaxusernamelength?', - cli_name='maxusername', - doc='Max. Username length', - minvalue=1, - attribute=True, - ), - Str('ipahomesrootdir?', - cli_name='homedirectory', - doc='Default location of home directories', - attribute=True, - ), - Str('ipadefaultloginshell?', - cli_name='defaultshell', - doc='Default shell for new users', - attribute=True, - ), - Str('ipadefaultprimarygroup?', - cli_name='defaultgroup', - doc='Default group for new users', - attribute=True, - ), - Str('ipadefaultemaildomain?', - cli_name='emaildomain', - doc='Default e-mail domain new users', - attribute=True, - ), - Int('ipasearchtimelimit?', - cli_name='searchtimelimit', - doc='Max. amount of time (sec.) for a search (-1 is unlimited)', - minvalue=-1, - attribute=True, - ), - Int('ipasearchrecordslimit?', - cli_name='searchrecordslimit', - doc='Max. number of records to search (-1 is unlimited)', - minvalue=-1, - attribute=True, - ), - Str('ipausersearchfields?', - cli_name='usersearch', - doc='A comma-separated list of fields to search when searching for users', - attribute=True, - ), - Str('ipagroupsearchfields?', - cli_name='groupsearch', - doc='A comma-separated list of fields to search when searching for groups', - attribute=True, - ), - ) - - def execute(self, *args, **options): - """ - Execute the config-mod operation. - - The dn should not be passed as a keyword argument as it is constructed - by this method. - - Returns the entry - - :param args: This function takes no positional arguments - :param kw: Keyword arguments for the other LDAP attributes. - """ - assert 'dn' not in options - ldap = self.api.Backend.ldap2 - - (dn, entry_attrs) = ldap.get_ipa_config() - entry_attrs = self.args_options_2_entry(*args, **options) - - try: - ldap.update_entry(dn, entry_attrs) - except errors.EmptyModlist: - pass - - return ldap.get_entry(dn, entry_attrs.keys()) - - def output_for_cli(self, textui, result, *args, **options): - (dn, entry_attrs) = result - - for p in self.params: - textui.print_plain(p) - textui.print_name(self.name) - for (name, options) in _options.iteritems(): - textui.print_plain('%s options:' % name) - for (k, v) in options.iteritems(): - k = k.lower() - if k in entry_attrs: - textui.print_attribute(v, entry_attrs[k]) - textui.print_plain('') - textui.print_dashed('Modified IPA configuration options.') - -api.register(config2_mod) - - -class config2_show(Command): - """ - Display IPA configuration options. - """ - - def execute(self, *args, **options): - """ - Execute the config-show operation. - - The dn should not be passed as a keyword argument as it is constructed - by this method. - - Returns the entry - - :param args: Not used. - :param kw: Not used. - """ - ldap = self.api.Backend.ldap2 - return ldap.get_ipa_config() - - def output_for_cli(self, textui, result, *args, **options): - (dn, entry_attrs) = result - count = 0 - - textui.print_name(self.name) - for (name, options) in _options.iteritems(): - textui.print_plain('%s options:' % name) - for (k, v) in options.iteritems(): - if k in entry_attrs: - textui.print_attribute(v, entry_attrs[k]) - count += 1 - textui.print_plain('') - textui.print_count(count, '%d option', '%d options') - -api.register(config2_show) - |