1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-22 18:50:08 +03:00

Merge branch 'feature-1020' of git.opennebula.org:one into feature-1020

This commit is contained in:
Ruben S. Montero 2011-12-24 03:50:23 +01:00
commit 497f0f2800

View File

@ -132,13 +132,13 @@ class VMwareDriver
case state
when "running","blocked","shutdown","dying"
state = 'a'
state_short = 'a'
when "paused"
state = 'p'
state_short = 'p'
when "crashed"
state = 'c'
state_short = 'c'
else
state = 'd'
state_short = 'd'
end
return "STATE=#{state_short}"