1
0
mirror of https://github.com/OpenNebula/one.git synced 2024-12-22 13:33:52 +03:00

Bug #1557: Add BOOT_UNKNOWN state to xsd and dot documentation files

This commit is contained in:
Carlos Martín 2012-10-16 14:56:06 +02:00
parent e8acbce433
commit a363381aab
3 changed files with 48 additions and 39 deletions

View File

@ -3,8 +3,8 @@
digraph OpenNebula {
graph [
nodesep= 0.5,
ratio=0.7,
pad=1,
ratio=0.8,
pad=0.5,
];
node [fontname="Helvetica"];
@ -19,6 +19,7 @@ digraph OpenNebula {
"ANY \\ {suspended,done}" [ shape="box" ];
subgraph { rank = min; user}
subgraph { rank = same; boot; boot_unknown; unknown; color="white"}
subgraph { rank = same; pending; hold; color="white"}
subgraph { rank = same; prolog; prolog_resume; prolog_migrate;
color="white" }
@ -82,10 +83,14 @@ digraph OpenNebula {
ANY -> done [label="delete"];
# restart
unknown -> boot [label="restart"];
boot -> boot [label="restart"];
poweroff -> boot [label="restart"];
unknown -> boot_unknown [label="restart"];
boot_unknown -> boot_unknown [label="restart"];
boot_unknown -> running [style="dashed"];
boot_unknown -> unknown [style="dotted"];
# reboot, reset
running -> running [label="reboot / reset"];

View File

@ -100,6 +100,8 @@
CLEANUP = 15
UNKNOWN = 16
HOTPLUG = 17
SHUTDOWN_POWEROFF = 18
BOOT_UNKNOWN = 19
-->
<xs:element name="LCM_STATE" type="xs:integer"/>
<xs:element name="RESCHED" type="xs:integer"/>

View File

@ -62,6 +62,8 @@
CLEANUP = 15
UNKNOWN = 16
HOTPLUG = 17
SHUTDOWN_POWEROFF = 18
BOOT_UNKNOWN = 19
-->
<xs:element name="LCM_STATE" type="xs:integer"/>
<xs:element name="RESCHED" type="xs:integer"/>