You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a problem when 2 similar names exists in kvm.
The required name for setup is RDPWindows but i have a previous testing machine with name RDPWindows.Back.
The grep commands on libvirt waCheckVMRunning doesnt seem to be complettelly correct.
I switch to regex strict match exept the running query e.g. **grep -wq "^$VM_NAME$" **.
full change:
VM_PAUSED=0
virsh list --state-paused | grep -wq "^$VM_NAME$"|| VM_PAUSED="$?"
VM_RUNNING=0
virsh list --state-running | grep -wq "$VM_NAME"|| VM_RUNNING="$?"
VM_SHUTOFF=0
virsh list --state-shutoff | grep -wq "^$VM_NAME$"|| VM_SHUTOFF="$?"
The text was updated successfully, but these errors were encountered:
I have a problem when 2 similar names exists in kvm.
The required name for setup is RDPWindows but i have a previous testing machine with name RDPWindows.Back.
The grep commands on libvirt waCheckVMRunning doesnt seem to be complettelly correct.
I switch to regex strict match exept the running query e.g. **grep -wq "^$VM_NAME$" **.
full change:
The text was updated successfully, but these errors were encountered: