Example #1
0
def start(headless=True):
    """
    Start the VM
    """
    vbox = Vbox(env.vm_name)
    vbox.start(headless=headless)
Example #2
0
def halt():
    """
    Stop the VM
    """
    vbox = Vbox(env.vm_name)
    vbox.halt()
Example #3
0
def remove():
    """
    Remove an existing box from vagrant
    """
    vbox = Vbox(env.vm_name)
    vbox.remove()