[PATCH] Fixes improper formatting in ElementAllocatedFromPool.mof. This was causing an error during the postinstall with Pegasus, which prevented the mof from being added to the repository correctly

# HG changeset patch # User Kaitlin Rupert <karupert@us.ibm.com> # Date 1194289946 28800 # Node ID ffb35bc02f07812cee133ebab999d8b463d51d03 # Parent e8577c608398eeb0812342dc942a4788116d4515 Fixes improper formatting in ElementAllocatedFromPool.mof. This was causing an error during the postinstall with Pegasus, which prevented the mof from being added to the repository correctly. Signed-off-by: Kaitlin Rupert <karupert@us.ibm.com> diff -r e8577c608398 -r ffb35bc02f07 schema/ElementAllocatedFromPool.mof --- a/schema/ElementAllocatedFromPool.mof Mon Nov 05 12:40:33 2007 +0100 +++ b/schema/ElementAllocatedFromPool.mof Mon Nov 05 11:12:26 2007 -0800 @@ -1,5 +1,7 @@ // Copyright IBM Corp. 2007 -Xen_ElementAllocatedFromPool : CIM_ElementAllocatedFromPool { +[Association] +class Xen_ElementAllocatedFromPool : CIM_ElementAllocatedFromPool { }; -KVM_ElementAllocatedFromPool : CIM_ElementAllocatedFromPool { +[Association] +class KVM_ElementAllocatedFromPool : CIM_ElementAllocatedFromPool { };

KR> -Xen_ElementAllocatedFromPool : CIM_ElementAllocatedFromPool { KR> +[Association] KR> +class Xen_ElementAllocatedFromPool : CIM_ElementAllocatedFromPool { Whoops, this would be my fault I think. Did I really forget "class" in front of the class name? That was dumb. Interesting that sfcb seems to be okay with it. Thanks :) -- Dan Smith IBM Linux Technology Center Open Hypervisor Team email: danms@us.ibm.com
participants (2)
-
Dan Smith
-
Kaitlin Rupert