Metadata-Version: 1.1
Name: edw.recipe.responsecheck
Version: 0.9-dev
Summary: A recipe that generates bash script for testing connectivity to application servers
Home-page: http://github.com/eaudeweb/edw.recipe.responsecheck
Author: Eau de Web
Author-email: vitalie.maldur@eaudeweb.ro
License: GPL
Description: Introduction
        ************
        
        This recipe can be used to generate a bash script that can test connectivity to application servers.
        
        .. contents::
        
        Example of usage
        ================
        A simple buildout.cfg::
        
          [buildout]
          parts = checker
        
          [checker]
          recipe = edw.recipe.responsecheck
          start-port = 8000
          end-port = 9000
          step = 2
          backends = backend1 ... backend2
          path = ${buildout:directory}/bin
        
        Recipe options
        --------------
        Explanation::
        
          start-port = Port to start the check.
          end-port   = Port to end the check.
          step       = The numeric value that the count is increased by each loop.
          backends   = List of backend names separated by space character.
          path       = Path to a folder where the bash script will be saved.
        
        Note: All options must be specified.
        
        
        Final result
        ============
        This recipe will generate a bash script that for each specified backend will test connectivity
        to every port from start-port to end-port with the specified step.
        
        
        Changelog
        =========
        
        0.9 - (unreleased)
        ------------------
          - Verification of a port range
          - Verification for multiple backends
        
Keywords: edw recipe zope plone connectivity server
Platform: UNKNOWN
Classifier: Framework :: Zope2
Classifier: Framework :: Zope3
Classifier: Framework :: Plone
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
