~gary/charms/oneiric/buildbot-master/dynamic-relationship

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/python

from helpers import (
    command,
    get_config,
    log,
    run,
    )

# Log the fact that we're about to begin the start step.
log('--> start')

config = get_config()
buildbot_dir =  config.get('installdir')
# Actually starting the buildbot happens in config-changed.
run('open-port', '8010/TCP')

# Log the fact that the start step is done.
log('<-- start')