diff options
author | Alexander Bokovoy <abokovoy@redhat.com> | 2011-09-13 00:01:23 +0300 |
---|---|---|
committer | Martin Kosek <mkosek@redhat.com> | 2011-09-13 11:25:58 +0200 |
commit | 136220265324111f77e3eec4b162a5df80623d07 (patch) | |
tree | b0f662fff54e79f0d2553e3865d3f911ce7327c1 /ipapython/setup.py.in | |
parent | 50a836b44cbeb4b6e31d71522cd7240da1cd7b6f (diff) | |
download | freeipa-136220265324111f77e3eec4b162a5df80623d07.tar.gz freeipa-136220265324111f77e3eec4b162a5df80623d07.tar.xz freeipa-136220265324111f77e3eec4b162a5df80623d07.zip |
Introduce platform-specific adaptation for services used by FreeIPA.
Refactor FreeIPA code to allow abstracting all calls to external processes and
dependencies on modification of system-wide configuration. A platform provider
would give its own implementation of those methods and FreeIPA would use it
based on what's built in packaging process.
https://fedorahosted.org/freeipa/ticket/1605
Diffstat (limited to 'ipapython/setup.py.in')
-rw-r--r-- | ipapython/setup.py.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipapython/setup.py.in b/ipapython/setup.py.in index d9ee28c55..df1cacf85 100644 --- a/ipapython/setup.py.in +++ b/ipapython/setup.py.in @@ -65,7 +65,7 @@ def setup_package(): classifiers=filter(None, CLASSIFIERS.split('\n')), platforms = ["Linux", "Solaris", "Unix"], package_dir = {'ipapython': ''}, - packages = [ "ipapython" ], + packages = [ "ipapython", "ipapython.platform" ], ) finally: del sys.path[0] |