# # vm list # # This is the default amount of time to wait between VMs default_delay = 10 # This is the ordered list of VMs to start. It's an array of # dicts. Each dict MUST have a "name" key which is the VM's name. # Optional keys are "wait" and "delay". # The wait key, if True, says whether to wait for the vm to report # "up" before continuing. The delay key is an override of the # default_delay and specifies the number of seconds to wait after # starting the VM. The 'wait' portion takes place first, so the # delay happens after the VM reports up. # vm_list = [ { 'name': 'vm-host-1', 'wait': True, 'delay': 20 }, { 'name': 'vm-host-2', 'delay': 20 }, { 'name': 'vm-host-3',}, ]