summaryrefslogtreecommitdiffstats
path: root/base/server/src/scriptlets/webapp_deployment.py
Commit message (Collapse)AuthorAgeFilesLines
* Reorganized deployment tools.Endi S. Dewata2013-07-221-165/+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-101-4/+3
| | | | | | | 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
* Code refactored for global variables and utility classes.Abhishek Koneru2013-06-271-59/+58
| | | | | | | | | | 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-101-0/+3
| | | | | | | | | 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
* Remove the respawn logic in deploy scripts.Abhishek Koneru2013-04-091-6/+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-091-0/+170
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