#!/bin/bash
case $1 in
    "view")
        echo "view the $2"
        virsh-viewer $2
        ;;
    "start")
        virsh start $2
        echo "start the $2"
        ;;
    "shutdown")
        virsh start $2 &
        echo "shutdown the $2"
        ;;
    "destroy")
        virsh destroy $2 &
        echo "destroy the $2"
        ;;
    "reset")
        echo poweroff $2 ...
        virsh destroy $2 &>/dev/null
        echo del $2.xml ...
        virsh undefine $2 &> /dev/null
        echo create disk ...
        qemu-img create -f qcow2 -b /var/lib/libvirt/p_w_picpaths/$2.qcow2 /var/lib/libvirt/p_w_picpaths/$3.qcow2 &> /dev/null
        echo create $2 vm ...
        virt-install \
        --name $3 \
        --ram 1000 \
        --disk /var/lib/libvirt/p_w_picpaths/$3.qcow2 \
        --import &> /dev/null &
        echo Reset Successful!
        ;;
    "")
        echo "You must input parameters!"
        ;;
esac