09d0ae25af
Change-Id: I41c1f5db641bed9224739d7099a619e02119e461
15 lines
234 B
Plaintext
15 lines
234 B
Plaintext
digraph sample_boot {
|
|
rankdir=LR;
|
|
|
|
node [shape = doublecircle];
|
|
CalcAction;
|
|
|
|
node [shape = circle];
|
|
|
|
CalcAction -> Alive;
|
|
Alive -> CreateVM;
|
|
CreateVM -> CheckBoot;
|
|
CheckBoot -> CheckBoot;
|
|
CheckBoot -> ConfigureVM;
|
|
}
|