summaryrefslogtreecommitdiffstats
path: root/ipa-radius-server
Commit message (Collapse)AuthorAgeFilesLines
* Fix versioning for configure.ac and ipa-python/setup.pySimo Sorce2008-08-112-3/+6
| | | | | | | | | | Fix make maintainer-clean Also make RPM naming consistent by using a temp RELEASE file. This one helps when testing builds using rpms. Just 'echo X > RELEASE' to build a new rpms (X, X+1, X+2 ...) Version 1.1.0 was released some times ago, bump up to 1.1.1
* Fix few syntax errors.Martin Nagy2008-08-061-1/+1
|
* Wrap up the raw_input() to user_input() for convenience and uniformity.Martin Nagy2008-07-231-2/+1
|
* Second half of the redoing how the version is managed.Rob Crittenden2008-05-071-1/+1
|
* Redo the way versioning works in freeIPA.Rob Crittenden2008-05-051-61/+0
| | | | | | | | | | | | | | | | | The file VERSION is now the sole-source of versioning. The generated .spec files will been removed in the maintainer-clean targets and have been removed from the repository. By default a GIT build is done. To do a non-GIT build do: $ make TARGET IPA_VERSION_IS_GIT_SNAPSHOT=no When updating the version you can run this to regenerate the version: $ make version-update The version can be determined in Python by using ipaserver.version.VERSION
* Become version 1.0.0release-1-0-0Rob Crittenden2008-04-162-1/+7
|
* Become freeipa-0.99.0Rob Crittenden2008-02-212-3/+9
|
* Set the license uniformly to GPLv2 only.Rob Crittenden2008-02-041-1/+1
|
* Marked with wrong license. IPA is GPLv2.Rob Crittenden2008-01-312-6/+12
|
* Fix issues reported by rpmlint.Rob Crittenden2008-01-185-20/+13
| | | | | | | | | | | | | | - Removing shebangs (#!) from a bunch of python libraries - Don't use a variable name in init scripts for the lock file - Keep the init script name consistent with the binary name, so renamed ipa-kpasswd.init to ipa_kpasswd.init - Add status option to the init scripts - Move most python scripts out of /usr/share/ipa and into the python site-packages directories (ipaserver and ipaclient) - Remove unnecessary sys.path.append("/usr/share/ipa") - Fix the license string in the spec files - Rename ipa-webgui to ipa_webgui everywhere - Fix a couple of issues reported by pychecker in ipa-python
* Update versions for release.Karl MacMillan2007-12-212-1/+7
|
* Refactor krbinstance and dsinstance creation stepsMark McLoughlin2007-12-131-16/+12
| | | | | | | | | | | | | | | | | | | | Creation steps are currently done with: self.start_creation(2, "Create foo") self.step("do foo") self.foo() self.step("do bar") self.bar() self.done_creation() This patch refactors that into the much more straightforward: self.step("do foo", self.foo) self.step("do bar", self.bar) self.start_creation("Create foo") Signed-off-by: Mark McLoughlin <markmc@redhat.com>
* Refactor dsinstance ldap modify codeMark McLoughlin2007-12-131-13/+18
| | | | | | | | | | | | | | Just a patch to refactor lots of similar code in dsinstance and krbinstance using a simple helper method. Note, there are some differences: - Some code used to call ldapmodify without -h 127.0.0.1 - Some of the code used to just print an error rather than using logging.critical() - Some code used to log some extra debug Signed-off-by: Mark McLoughlin <markmc@redhat.com>
* More ipautil fixingMark McLoughlin2007-12-131-9/+9
| | | | | | | | Recently, dsinstance and krbinstance was fixed to not import * from ipautil; do the same for the rest of ipaserver. Signed-off-by: Mark McLoughlin <markmc@redhat.com>
* Move radius server components into a separate package.Karl MacMillan2007-12-127-0/+652