예제 #1
0
파일: tasks.py 프로젝트: jong/fragrant
def start(headless=True):
    """
    Start the VM
    """
    vbox = Vbox(env.vm_name)
    vbox.start(headless=headless)
예제 #2
0
파일: tasks.py 프로젝트: jong/fragrant
def halt():
    """
    Stop the VM
    """
    vbox = Vbox(env.vm_name)
    vbox.halt()
예제 #3
0
파일: tasks.py 프로젝트: jong/fragrant
def remove():
    """
    Remove an existing box from vagrant
    """
    vbox = Vbox(env.vm_name)
    vbox.remove()