summaryrefslogtreecommitdiffstats
path: root/ipalib
Commit message (Collapse)AuthorAgeFilesLines
* lite-xmlrpc.py now uses api.bootstrap() property, logs to api.loggerJason Gerard DeRose2008-10-283-4/+4
|
* util.configure_logging() now only configures file logging if it can create ↵Jason Gerard DeRose2008-10-281-5/+7
| | | | the log_dir
* Added util.configure_logging() function; API.bootstrap() now calls ↵Jason Gerard DeRose2008-10-284-2/+59
| | | | util.configure_logging()
* Fixed use of depreciated env.get() in b_xmlrpc.py moduleJason Gerard DeRose2008-10-271-10/+13
|
* API.load_plugins() no longer takes dry_run=False kwarg and instead checks in ↵Jason Gerard DeRose2008-10-272-4/+5
| | | | env.mode == 'unit_test' to decide whether to load the plugins; it also only loads ipa_server.plugins in env.in_server is True
* More CLI cleanup, got all basics working againJason Gerard DeRose2008-10-272-70/+71
|
* More docstrings, functionality, and unit tests for improved CLI classJason Gerard DeRose2008-10-272-81/+166
|
* API.bootstrap() now calls Env._finalize_core(); updated unit testsJason Gerard DeRose2008-10-271-0/+1
|
* Implemented basic CLI.bootstrap(); added corresponding unit testsJason Gerard DeRose2008-10-272-23/+15
|
* Started cleanup work on CLI class, added unit tests for CLI.parse_globals()Jason Gerard DeRose2008-10-271-1/+2
|
* Started cleanup work on CLI class, added unit tests for CLI.parse_globals()Jason Gerard DeRose2008-10-271-48/+69
|
* API.env is now an Env instance rather than an Environment instanceJason Gerard DeRose2008-10-272-3/+4
|
* Env._finalize_core() now also loads config from Env.conf_defaultJason Gerard DeRose2008-10-271-0/+2
|
* Env._bootstrap() now also sets Env.conf_defaultJason Gerard DeRose2008-10-272-6/+9
|
* Removed depreciated load_plugins.py module; changed all places where ↵Jason Gerard DeRose2008-10-271-82/+0
| | | | load_plugins was imported to now call api.load_plugins()
* Copied plugin loading function from load_plugins.py to util.py; ↵Jason Gerard DeRose2008-10-272-0/+56
| | | | API.load_plugins() method now calls functions in util
* Added API.load_plugins() place-holder, which cascades call to API.bootstrap()Jason Gerard DeRose2008-10-261-0/+13
|
* Implemented placeholder API.bootstrap() method; added API __doing(), ↵Jason Gerard DeRose2008-10-261-2/+23
| | | | __do_if_not_done(), isdone() methods borrowed from Env; API.finalize() now cascades call to API.bootstrap()
* Added more needed config in DEFAULT_CONFIGJason Gerard DeRose2008-10-241-4/+31
|
* Finished Env._finalize() and corresponding unit testsJason Gerard DeRose2008-10-241-4/+10
|
* Finished Env._finalize_core() and corresponding unit testsJason Gerard DeRose2008-10-242-14/+86
|
* Env._bootstrap() now raises StandardError if called more than onceJason Gerard DeRose2008-10-241-0/+9
|
* Merge branch 'master' of ↵Jason Gerard DeRose2008-10-243-7/+28
|\ | | | | | | git://git.engineering.redhat.com/users/rcritten/freeipa2
| * Use posixAccount instead of person to identify usersRob Crittenden2008-10-242-3/+9
| | | | | | | | Add output_for_cli to service-find
| * If a password is supplied then this host will be bulk-enrolledRob Crittenden2008-10-241-4/+19
| | | | | | | | | | A bulk-enrolled host does not get a kerberos service principal until enrollment time.
* | Added ipalib/constants.py; added Env._load_config() method along with ↵Jason Gerard DeRose2008-10-242-3/+103
| | | | | | | | comprehensive unit tests for same
* | Finished doodle with stricter version of EnvironmentJason Gerard DeRose2008-10-241-0/+87
|/
* IPAError now more appropriately subclasses from StandardError instead of ↵Jason Gerard DeRose2008-10-231-1/+1
| | | | Exception
* Use common display function for user-show and user-find.Rob Crittenden2008-10-232-12/+38
| | | | | Add --all option to user-find Fix command-line help to make sense on searches as well
* Fix ipa command running in server_context=TrueRob Crittenden2008-10-232-1/+19
| | | | | | Make the LDAP host and port environment variables More changes so that commands have a shell return value lite-xmlrpc no longer hardcodes the kerberos credentials cache location
* Implement the host commandsRob Crittenden2008-10-225-11/+284
| | | | | In order for this to work against a v1 database the update host.update needs to be applied
* Return a value to the shell that called ipaRob Crittenden2008-10-221-2/+6
|
* Merge branch 'master' of ↵Jason Gerard DeRose2008-10-214-15/+191
|\ | | | | | | git://git.engineering.redhat.com/users/rcritten/freeipa2
| * Implement group member add/removeRob Crittenden2008-10-211-2/+149
| | | | | | | | Add gidNumber to the group command-line
| * Don't import servercoreRob Crittenden2008-10-211-3/+0
| |
| * Update the command-line options to more closely match v1Rob Crittenden2008-10-211-6/+24
| |
| * Gracefully handle keyboard interrupts (^C)Rob Crittenden2008-10-211-1/+4
| |
| * Implement --all option to display all attributes.Rob Crittenden2008-10-211-2/+8
| | | | | | | | Still need to strip the dn when not doing all.
| * Make boolean options work like standard OptionParser booleansRob Crittenden2008-10-211-1/+6
| |
* | In second example in NameSpace docstring, renamed 'member' class to 'Member' ↵Jason Gerard DeRose2008-10-211-4/+4
| | | | | | | | to make the example clearer
* | Fixed typos in tables in docstrings for Attribute and MethodJason Gerard DeRose2008-10-211-8/+8
|/
* Merge branch 'master' of ↵Jason Gerard DeRose2008-10-201-0/+82
|\ | | | | | | git://git.engineering.redhat.com/users/rcritten/freeipa2
| * Framework for doing password changesRob Crittenden2008-10-201-0/+82
| | | | | | | | Need mechanism to prompt for new password twice and verify they are the same
* | Added docstring (with example) to frontend.Attribute classJason Gerard DeRose2008-10-201-0/+34
| |
* | Added docstring (with examples) to frontend.Method classJason Gerard DeRose2008-10-201-0/+62
| |
* | Reworked 'plugins' command to use output_for_cli()Jason Gerard DeRose2008-10-201-8/+11
| |
* | Fixed bug in DefaultFrom where impleied keys were using entire ↵Jason Gerard DeRose2008-10-201-1/+2
|/ | | | func_code.co_varnames instead of an approprate slice
* Port pwpolicy plugin to use b_ldapRob Crittenden2008-10-202-42/+79
| | | | Add basic output_for_cli() function to user-show
* Add comments in config.py and fix Environment.get()Martin Nagy2008-10-201-2/+52
|
* Some PEP-257 and reStructuredText cleanup in plugable.pyJason Gerard DeRose2008-10-181-37/+52
|