2017-03-06 05:23:55 -06:00
|
|
|
Here is a quick guide to get you started in IPA development.
|
2011-01-07 13:48:16 -06:00
|
|
|
|
|
|
|
Dependencies
|
|
|
|
------------
|
|
|
|
|
2015-05-07 07:53:45 -05:00
|
|
|
For more information, see http://www.freeipa.org/page/Build
|
|
|
|
|
2011-01-07 13:48:16 -06:00
|
|
|
The quickest way to get the dependencies needed for building is:
|
|
|
|
|
2016-10-12 06:27:16 -05:00
|
|
|
# dnf builddep -b -D "with_lint 1" --spec freeipa.spec.in
|
2015-05-07 07:53:45 -05:00
|
|
|
|
2017-05-25 05:14:23 -05:00
|
|
|
TIP: For building with latest dependencies for freeipa master enable copr repo:
|
|
|
|
|
|
|
|
# dnf copr enable @freeipa/freeipa-master
|
|
|
|
|
|
|
|
see: https://copr.fedorainfracloud.org/coprs/g/freeipa/freeipa-master/
|
|
|
|
|
2011-01-07 13:48:16 -06:00
|
|
|
Building
|
|
|
|
--------
|
|
|
|
|
|
|
|
From the root of the source tree run:
|
2016-11-07 09:46:37 -06:00
|
|
|
$ ./makerpms.sh
|
2011-01-07 13:48:16 -06:00
|
|
|
|
|
|
|
The resulting rpm packages are in dist/rpms:
|
|
|
|
|
|
|
|
# yum --nogpgcheck localinstall dist/rpms/*
|
|
|
|
# ipa-server-install
|
|
|
|
|
2016-11-07 09:46:37 -06:00
|
|
|
You might tweak the build and run steps separatelly:
|
|
|
|
$ autoreconf -i
|
|
|
|
$ ./configure
|
|
|
|
$ make
|
|
|
|
$ make install
|
|
|
|
|
|
|
|
It may be possible to do a simple make install but this has not been
|
2011-01-07 13:48:16 -06:00
|
|
|
well-tested. Additional work is done in pre/post install scripts in the ipa
|
|
|
|
spec file.
|
|
|
|
|
|
|
|
Developing plugins
|
|
|
|
------------------
|
|
|
|
|
|
|
|
It is possible to do management plugin development within the source tree.
|
|
|
|
|
|
|
|
To start with, you need a full IPA install on the current system. Build and
|
|
|
|
install the rpms and then configure IPA using ipa-server-install.
|
|
|
|
|
|
|
|
Get a TGT for the admin user with: kinit admin
|
|
|
|
|
|
|
|
Next you'll need 2 sessions in the source tree. In the first session run
|
2017-01-21 12:34:12 -06:00
|
|
|
```make lite-server```. In the second session copy /etc/ipa/default.conf into
|
2015-01-03 14:43:39 -06:00
|
|
|
~/.ipa/default.conf and replace xmlrpc_uri with http://127.0.0.1:8888/ipa/xml.
|
|
|
|
Finally run the ./ipa tool and it will make requests to the lite-server
|
|
|
|
listening on 127.0.0.1:8888.
|
2011-01-07 13:48:16 -06:00
|
|
|
|
|
|
|
This makes developing plugins much faster and you can also make use of the
|
|
|
|
Python pdb debugger on the server side.
|
|
|
|
|
|
|
|
You'll find you may need to refresh the underlying build if schema or other
|
|
|
|
changes are required.
|
|
|
|
|
|
|
|
Testing
|
|
|
|
-------
|
|
|
|
|
2014-02-11 06:47:16 -06:00
|
|
|
For more information, see http://www.freeipa.org/page/Testing
|
|
|
|
|
2011-01-07 13:48:16 -06:00
|
|
|
We use python nosetests to test for regressions in the management framework
|
2014-02-11 06:47:16 -06:00
|
|
|
and plugins. All test dependencies are required by the freeipa-tests package.
|
2011-01-07 13:48:16 -06:00
|
|
|
|
|
|
|
To run all of the tests you will need 2 sessions, one to run the lite-server
|
|
|
|
and the other to execute the tests. You'll also need a TGT before starting
|
|
|
|
the lite-server:
|
|
|
|
|
|
|
|
% kinit admin
|
|
|
|
% make test
|
|
|
|
|
|
|
|
Some tests may be skipped. For example, all the XML-RPC tests will be skipped
|
|
|
|
if you haven't started the lite-server. The DNS tests will be skipped if
|
|
|
|
the underlying IPA installation doesn't configure DNS, etc.
|
|
|
|
|
2011-01-13 13:29:16 -06:00
|
|
|
API.txt
|
|
|
|
-------
|
|
|
|
The purpose of the file API.txt is to prevent accidental API changes. The
|
|
|
|
program ./makeapi creates file and also validates it (with the --validate
|
|
|
|
option). This validation is part of the build process.
|
|
|
|
|
|
|
|
There are three solutions to changes to the API:
|
|
|
|
|
|
|
|
1. Changes to existing API require a change to the MAJOR version.
|
|
|
|
2. Addition of new API requires a change to the MINOR version.
|
|
|
|
3. Or just back out your changes and don't make an API change.
|
|
|
|
|
|
|
|
If the API changes you'll need to run ./makeapi to update API.txt and
|
|
|
|
commit it along with VERSION with your API change.
|
|
|
|
|
|
|
|
If a module is optionally loaded then you will need to be able to
|
|
|
|
conditionally load it for API validation. The environment variable
|
|
|
|
api.env.validate_api is True during validation.
|
|
|
|
|
2011-01-07 13:48:16 -06:00
|
|
|
General Notes
|
|
|
|
-------------
|
|
|
|
IPA is not relocatable.
|
|
|
|
|
|
|
|
When building rpms the version contains the GIT id in the version. To prevent
|
|
|
|
this pass the argument IPA_VERSION_IS_GIT_SNAPSHOT=yes to make.
|