Example #1
0
File: vm.py Project: cloudcache/cc1
def restart(caller_id, vm_id_list):
    """
    @cmview_admin_cm

    @parameter{vm_id_list,list} list of vm id's
    """

    return VM.restart(vm_id_list)
Example #2
0
def restart(caller_id, vm_id_list):
    """
    Sends signal to reboot specified VMs. VM is not saved to SystemImage
    during reboot.

    @cmview_admin_cm
    @param_post{vm_id_list,(list(int))} ids of the VMs to restart
    """

    return VM.restart(vm_id_list)
Example #3
0
File: vm.py Project: cc1-cloud/cc1
def restart(caller_id, vm_id_list):
    """
    Sends signal to reboot specified VMs. VM is not saved to SystemImage
    during reboot.

    @cmview_admin_cm
    @param_post{vm_id_list,(list(int))} ids of the VMs to restart
    """

    return VM.restart(vm_id_list)