summaryrefslogtreecommitdiffstats
path: root/base/server/src/scriptlets
Commit message (Collapse)AuthorAgeFilesLines
* Reorganized deployment tools.Endi S. Dewata2013-07-2210-1357/+0
| | | | | | | The pkispawn and pkidestroy scripts have been moved into sbin folder. The Python deployment library and the scriptlets were moved into pki.server.deployment and pki.server.deployment.scriptlets packages, respectively.
* Fix issues reported by pylint.Abhishek Koneru2013-07-1010-35/+36
| | | | | | | Fixed all warnings caused due to absolute import of modules in same package and not marking the regexes with an r when trying to match. Ticket #316
* Fixes for issues reported by pylint.Abhishek Koneru2013-07-021-2/+3
| | | | | Fixes for issues in other files. Ticket #316
* Fixes for issues reported by pylint.Abhishek Koneru2013-07-022-9/+9
| | | | | Fixes for issues in other files. Ticket #316
* Minor reference fix in selinux-setup.pyAbhishek Koneru2013-07-011-1/+1
|
* Applied PEP8 formatting to python files.Abhishek Koneru2013-06-274-11/+11
| | | | | | | General formatting done for all the python files except for the line length issue, which could not be formatted using Pydev in Eclipse. Ticket #316
* Code refactored for global variables and utility classes.Abhishek Koneru2013-06-2710-524/+519
| | | | | | | | | | Added a new class PKIDeployer, whose object holds references to global dictionaries for master and slots and also objects of utility classes in pkihelper.py. This object once created in pkispawn/pkidestroy will be passed on to the PKIScriptlets and used. This also fixes few pylint related errors (E1120) Ticket #316
* Added Tomcat-based TPS instance.Endi S. Dewata2013-06-102-7/+5
| | | | | | | | | The build and deployment tools have been modified to support creating a basic Tomcat instance to run TPS. New configuration and template files for TPS have been copied from another Tomcat subsystem. The TPS functionality itself will be added in future patches. Ticket #526
* Changes to the displayed installation summary.Abhishek Koneru2013-06-061-4/+0
| | | | | | | | | If pki_skip_configuration=True, then do not display the installation summary. And, display client database details only when pki_client_database_purge=False. Also replace \t with spaces in the print messages. Ticket #599
* Do not use sys.exit() after an error.Abhishek Koneru2013-05-211-1/+1
| | | | | | | Raise an exception on error so that it can be handled by the caller. Ticket #562
* pkispawn/pkidestroy retry setting selinux contexts.Abhishek Koneru2013-04-171-93/+127
| | | | | | | | Add a retry mechanism to pkispawn/pkidestroy when they could not acquire semanage transaction lock while setting/deleting selinux contexts. Ticket #470
* Remove sensitive parameters from archived deployment cfg.Abhishek Koneru2013-04-171-6/+9
| | | | | | | Remove the sensitive parameters before archiving the user configurations in the archive file. Ticket #566
* Remove the respawn logic in deploy scripts.Abhishek Koneru2013-04-0910-60/+0
| | | | | | | | Remove all the declarations, definitions and invocations of respawn() method in the deploment scripts. Remove the -u update option in pkispawn script. Ticket #542
* Renamed base/deploy to base/server.Endi Sukma Dewata2013-04-0910-0/+1389
The base/deploy folder has been renamed to base/server to match the package name. The pki.conf has been moved into pki-base package. Ticket #553, #564