Sha256: 199b0c8891bf754077fb04a8ee55877f4a213638c48c9ff979a728463491a3c5

Contents?: true

Size: 1001 Bytes

Versions: 45

Compression:

Stored size: 1001 Bytes

Contents

"""
This module contains the choices definition for settings required
for the build master to run.
"""

from choices import Choices

from loader import load_settings

#----------------------------------------------------------------------
# Define the Settings
#----------------------------------------------------------------------
c = Choices()
c.define('title', type=str, help="Buildmaster title")
c.define('title_url', type=str, help="URL for title page")
c.define('buildbot_url', type=str, help="URL to the buildbot master.")
c.define('slaves', type=str, help="A list of the slave machines. The format should be name:password,name:password,...")
c.define('web_port', type=int, help="Port to listen on for web service.")
c.define('http_users', type=str, help="username:password list of users.")

#----------------------------------------------------------------------
# Load the Settings
#----------------------------------------------------------------------
options = load_settings(c, "master")

Version data entries

45 entries across 45 versions & 6 rubygems

Version Path
vagrantup-0.9.1 test/buildbot/buildbot_config/config/master.py
vagrantup-0.9.0 test/buildbot/buildbot_config/config/master.py
vagrantup-0.8.9 test/buildbot/buildbot_config/config/master.py
vagrantup-0.8.8 test/buildbot/buildbot_config/config/master.py
vagrantup-0.8.10 test/buildbot/buildbot_config/config/master.py
vagrant-fixed-ssh-1.0.7 test/buildbot/buildbot_config/config/master.py
vagrant-1.0.7 test/buildbot/buildbot_config/config/master.py
vagrant-1.0.6 test/buildbot/buildbot_config/config/master.py
boxcar-0.10005.1 test/buildbot/buildbot_config/config/master.py
fragrant-0.0.5 vendor/bundle/ruby/1.9.1/gems/vagrant-1.0.5/test/buildbot/buildbot_config/config/master.py
vagrant-1.0.5 test/buildbot/buildbot_config/config/master.py
vagrant-1.0.4 test/buildbot/buildbot_config/config/master.py
vagrant-1.0.3 test/buildbot/buildbot_config/config/master.py
vagrant-1.0.2 test/buildbot/buildbot_config/config/master.py
vagrant-1.0.1 test/buildbot/buildbot_config/config/master.py
vagrant-1.0.0 test/buildbot/buildbot_config/config/master.py
vagrant-0.9.7 test/buildbot/buildbot_config/config/master.py
vagrant-0.9.5 test/buildbot/buildbot_config/config/master.py
vagrant-0.9.4 test/buildbot/buildbot_config/config/master.py
vagrant-0.9.3 test/buildbot/buildbot_config/config/master.py