Metadata-Version: 1.1
Name: birdhousebuilder.recipe.tomcat
Version: 0.1.2
Summary: A Buildout recipe to install and configure tomcat
Home-page: http://www.dkrz.de
Author: Carsten Ehbrecht
Author-email: ehbrecht@dkrz.de
License: BSD
Description: ******************************
        birdhousebuilder.recipe.tomcat
        ******************************
        
        .. contents::
        
        Introduction
        ************
        
        ``birdhousebuilder.recipe.tomcat`` is a `Buildout`_ recipe to install ``apache-tomcat`` application server with `Anaconda`_. It installs the ``apache-tomcat`` package from a conda channel and deploys a `Supervisor`_ configuration in ``~/anaconda/etc/supervisor/conf.d/tomcat.conf``. Supervisor can be started with ``~/anaconda/etc/init.d/supervisord start``.
        
        .. _`Buildout`: http://buildout.org/
        .. _`Anaconda`: http://www.continuum.io/
        .. _`Supervisor`: http://supervisord.org/
        
        Usage
        *****
        
        The recipe requires that Anaconda is already installed. It assumes that Anaconda is installed at the default location in your home directory ``~/anaconda``. Otherwise you need to set the Buildout option ``anaconda-home``.
        
        The recipe depends on ``birdhousebuilder.recipe.conda`` and ``birdhousebuilder.recipe.supervisor``.
        
        Supported options
        =================
        
        This recipe supports the following options:
        
        ``anaconda-home``
           Buildout option with the root folder of the Anaconda installation. Default: ``$HOME/anaconda``.
        
        Example usage
        =============
        
        The following example ``buildout.cfg`` installs ``tomcat`` as a Supervisor service::
        
          [buildout]
          parts = tomcat
        
          anaconda-home = /home/myself/anaconda
        
          [tomcat]
          recipe = birdhousebuilder.recipe.tomcat
        
        
        
        
        Authors
        *******
        
        Carsten Ehbrecht ehbrecht@dkrz.de
        
        Changes
        *******
        
        0.1.2 (2014-07-31)
        ==================
        
        Update documentation.
        
        0.1.1 (2014-07-22)
        ==================
        
        Configure tomcat-users.xml.
        
        0.1.0 (2014-07-10)
        ==================
        
        Initial Release.
        
Keywords: buildout recipe
Platform: UNKNOWN
Classifier: Framework :: Buildout
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: BSD License
