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