Edgewall Software

Changes between Version 1 and Version 2 of Bitten Install


Ignore:
Timestamp:
Sep 25, 2005, 10:53:42 PM (19 years ago)
Author:
darkeye@…
Comment:

changed bittend to bitten-master and bitten to bitten-slave

Legend:

Unmodified
Added
Removed
Modified
  • Bitten Install

    v1 v2  
    1414== Installation ==
    1515
    16 Bitten is written in Python, so make sure that you have Python installed. You'll need Python 2.3 or later. Also, make sure that [http://peak.telecommunity.com/DevCenter/setuptools setuptools] is installed.
     16Bitten is written in Python, so make sure that you have Python installed. You'll need Python 2.3 or later. Also, make sure that [http://peak.telecommunity.com/DevCenter/setuptools setuptools] is installed.
    1717
    1818If that's taken care of, you just need to download and unpack the Bitten distribution, and execute the command:
     
    5353== Running the Build Master ==
    5454
    55 At this point, you're ready to start the Bitten build master. The installation of Bitten should have put a `bittend` script on your path. If the script is not on your path, look for it in the `bin` or `scripts` subdirectory of your Python installation.
     55At this point, you're ready to start the Bitten build master. The installation of Bitten should have put a `bitten-master` script on your path. If the script is not on your path, look for it in the `bin` or `scripts` subdirectory of your Python installation.
    5656
    5757To find out about the options and arguments of the script, execute it with the `--help` option as follows:
    5858{{{
    59   $ bittend --help
     59  $ bitten-master --help
    6060}}}
    6161
    6262Most commonly, you'll want to specify the log level and log file, as well as the path to the Trac environment:
    6363{{{
    64   $ bittend --verbose --log=/var/log/bittend /var/trac/myproject
     64  $ bitten-master --verbose --log=/var/log/bittend /var/trac/myproject
    6565}}}
    6666
     
    7070on which the build master is running. Just as with the build master script,
    7171you should find the build slave script on your path after the installation.
    72 The build slave script is called `bitten`.
     72The build slave script is called `bitten-slave`.
    7373
    7474To get a list of options for the build slave, execute it with the `--help`
    7575option:
    7676{{{
    77   $ bitten --help
     77  $ bitten-slave --help
    7878}}}
    7979
     
    8181you'd run:
    8282{{{
    83   $ bitten myproject.example.org
     83  $ bitten-slave myproject.example.org
    8484}}}