Displaying 2 results from an estimated 2 matches for "virtualdomain_status".
2020 Oct 07
2
Is it possible that "virsh destroy" does not stop a domain ?
...ocf_exit_reason "forced stop failed" # <============ fail of destroy seems to be possible
return $OCF_ERR_GENERIC ;;
0*)
while [ $status != $OCF_NOT_RUNNING ]; do
VirtualDomain_status
status=$?
done ;;
esac
return $OCF_SUCCESS
}
The function force_stop is responsible for stop/destroy the domain.
And it cares about a non-working "virsh destroy".
Is there a developer who can explain what "virsh...
2020 Oct 07
0
Re: Is it possible that "virsh destroy" does not stop a domain ?
...ocf_exit_reason "forced stop failed" #
> <============ fail of destroy seems to be possible
> return $OCF_ERR_GENERIC ;;
> 0*)
> while [ $status != $OCF_NOT_RUNNING ]; do
> VirtualDomain_status
> status=$?
> done ;;
> esac
> return $OCF_SUCCESS
> }
>
> The function force_stop is responsible for stop/destroy the domain.
> And it cares about a non-working "virsh destroy".
> Is there...