Sha256: 73cd2499e9cdcc52966771ccd4feb3c4cff5d17fe792319826b0ae0a6190049a

Contents?: true

Size: 862 Bytes

Versions: 45

Compression:

Stored size: 862 Bytes

Contents

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

from choices import Choices

from loader import load_settings

#----------------------------------------------------------------------
# Define the Settings
#----------------------------------------------------------------------
c = Choices()
c.define("master_host", type=str, help="Host of the build master.")
c.define("master_port", type=int, help="Port that is listening or build masters.")
c.define("name", type=str, help="Name of the slave machine.")
c.define("password", type=str, help="Password for the slave machine to communicate with the master.")

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

Version data entries

45 entries across 45 versions & 6 rubygems

Version Path
bmhatfield-vagrant-1.0.10 test/buildbot/buildbot_config/config/slave.py
bmhatfield-vagrant-1.0.9 test/buildbot/buildbot_config/config/slave.py
bmhatfield-vagrant-1.0.8 test/buildbot/buildbot_config/config/slave.py
bmhatfield-vagrant-1.0.7 test/buildbot/buildbot_config/config/slave.py
vagrantup-1.0.7 test/buildbot/buildbot_config/config/slave.py
vagrantup-1.0.6 test/buildbot/buildbot_config/config/slave.py
vagrantup-1.0.5 test/buildbot/buildbot_config/config/slave.py
vagrantup-1.0.4 test/buildbot/buildbot_config/config/slave.py
vagrantup-1.0.3 test/buildbot/buildbot_config/config/slave.py
vagrantup-1.0.2 test/buildbot/buildbot_config/config/slave.py
vagrantup-1.0.1 test/buildbot/buildbot_config/config/slave.py
vagrantup-1.0.0 test/buildbot/buildbot_config/config/slave.py
vagrantup-0.9.99.2 test/buildbot/buildbot_config/config/slave.py
vagrantup-0.9.99.1 test/buildbot/buildbot_config/config/slave.py
vagrantup-0.9.7 test/buildbot/buildbot_config/config/slave.py
vagrantup-0.9.6 test/buildbot/buildbot_config/config/slave.py
vagrantup-0.9.5 test/buildbot/buildbot_config/config/slave.py
vagrantup-0.9.4 test/buildbot/buildbot_config/config/slave.py
vagrantup-0.9.3 test/buildbot/buildbot_config/config/slave.py
vagrantup-0.9.2 test/buildbot/buildbot_config/config/slave.py