[PATCH 0 of 5] Migrate from scheam 2.16 to 2.21

This patchset provides the set of changes needed to upgrade to scheam 2.21. The easiest way to test this is to do the following: 1) make preuninstall 2) make uninstall 3) Recongifure your source tree to pick up the makefile changes 5) make 6) make preinstall 7) Restart your CIMOM (to be sure to pick up the new schema) 8) make install 9) make postinstall I've also testing this by uninstalling Pegasus / sfcb and removing the repository. Then reinstalling Pegasus / sfcb and doing the steps above.

# HG changeset patch # User Kaitlin Rupert <karupert@us.ibm.com> # Date 1242225647 25200 # Node ID 9e56460627520ce02a57b854fb440eb26ba6aaff # Parent f1b8c4c8e95b1e74e77a0b2930215bb18efd0aaa Use 2.21 schema instead of 2.16 Instead of pulling 2.16 from the DMTF site, pull down 2.21. Also, the format of the DMTF zip file has changed slightly. These are the necessary formatting changes. Signed-off-by: Kaitlin Rupert <karupert@us.ibm.com> diff -r f1b8c4c8e95b -r 9e5646062752 base_schema/Makefile.am --- a/base_schema/Makefile.am Fri May 08 10:53:01 2009 -0700 +++ b/base_schema/Makefile.am Wed May 13 07:40:47 2009 -0700 @@ -1,12 +1,13 @@ -CIM_SCHEMA_VER = 216 +CIM_SCHEMA_VER = 2.21.0 +CIM_SCHEMA_DIR = 2210 CIM_SCHEMA_REL = $(CIM_SCHEMA_VER)Experimental -CIM_SCHEMA_ZIP = cimv$(CIM_SCHEMA_REL)-MOFs.zip +CIM_SCHEMA_ZIP = cim_schema_$(CIM_SCHEMA_REL)-MOFs.zip -dist_pkgdata_DATA = $(CIM_SCHEMA_ZIP) fix_schema.patch cimv216-interop_mof \ - cimv216-cimv2_mof +dist_pkgdata_DATA = $(CIM_SCHEMA_ZIP) cimv2.21.0-interop_mof \ + cimv2.21.0-cimv2_mof dist_pkgdata_SCRIPTS = install_base_schema.sh $(CIM_SCHEMA_ZIP): - wget http://www.dmtf.org/standards/cim/cim_schema_v$(CIM_SCHEMA_VER)/$(CIM_SCHEMA...) + wget http://www.dmtf.org/standards/cim/cim_schema_v$(CIM_SCHEMA_DIR)/$(CIM_SCHEMA...) EXTRA_DIST = README.DMTF diff -r f1b8c4c8e95b -r 9e5646062752 base_schema/install_base_schema.sh.in --- a/base_schema/install_base_schema.sh.in Fri May 08 10:53:01 2009 -0700 +++ b/base_schema/install_base_schema.sh.in Wed May 13 07:40:47 2009 -0700 @@ -3,7 +3,7 @@ DATA="$1" NS=@CIM_VIRT_NS@ CIMOM=@CIMSERVER@ -SCHEMA_VERSION="2.16" +SCHEMA_VERSION="2.21.0" TMPDIR=$(mktemp -d /tmp/cim_schema.XXXXX) chmod a+x $TMPDIR @@ -16,13 +16,12 @@ fi unpack_schema() { - cd ${TMPDIR} && unzip ${DATA}/cimv*-MOFs.zip + cd ${TMPDIR} && unzip ${DATA}/cim_schema_*-MOFs.zip } fix_schema() { - (cd ${TMPDIR} && patch -p0 < ${DATA}/fix_schema.patch) - cp -a ${DATA}/cimv216-interop_mof ${TMPDIR}/cimv216-interop.mof - cp -a ${DATA}/cimv216-cimv2_mof ${TMPDIR}/cimv216-cimv2.mof + cp -a ${DATA}/cimv2.21.0-interop_mof ${TMPDIR}/cimv2.21.0-interop.mof + cp -a ${DATA}/cimv2.21.0-cimv2_mof ${TMPDIR}/cimv2.21.0-cimv2.mof } @@ -70,11 +69,11 @@ cd ${TMPDIR} - cimmofl -uc -aEV -R$repo -n $NS cimv???.mof + cimmofl -uc -aEV -R$repo -n $NS cim_schema_?.??.?.mof cimmofl -uc -aEV -R$repo -n $NS qualifiers.mof cimmofl -uc -aEV -R$repo -n $NS qualifiers_optional.mof - cimmofl -uc -aEV -R$repo -n /root/interop cimv???-interop.mof - cimmofl -uc -aEV -R$repo -n /root/cimv2 cimv???-cimv2.mof + cimmofl -uc -aEV -R$repo -n /root/interop cimv?.??.?-interop.mof + cimmofl -uc -aEV -R$repo -n /root/cimv2 cimv?.??.?-cimv2.mof } install_schema_sfcb() { @@ -87,7 +86,7 @@ return fi - mv ${TMPDIR}/cimv???.mof ${TMPDIR}/CIM_Schema.mof + mv ${TMPDIR}/cim_schema_?.??.?.mof ${TMPDIR}/CIM_Schema.mof cp -ra ${TMPDIR}/* ${dir}/CIM sfcbrepos -f }

# HG changeset patch # User Kaitlin Rupert <karupert@us.ibm.com> # Date 1242225647 25200 # Node ID 1492b21f3650f7febcfcade71c75b58a6c25982f # Parent 9e56460627520ce02a57b854fb440eb26ba6aaff Change the names of the cimv2 and interop regiration files This is so the names more closely align with the name of the 2.21 zip file provided by the DMTF. Signed-off-by: Kaitlin Rupert <karupert@us.ibm.com> diff -r 9e5646062752 -r 1492b21f3650 base_schema/cimv2.21.0-cimv2_mof --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/base_schema/cimv2.21.0-cimv2_mof Wed May 13 07:40:47 2009 -0700 @@ -0,0 +1,11 @@ +Qualifier IsPUnit : boolean = false, + Scope(property, method, parameter); + +Qualifier Experimental : boolean = false, + Scope(any), + Flavor(EnableOverride, Restricted); + +#pragma include ("Core/CIM_ResourcePool.mof") +#pragma include ("Core/CIM_HostedResourcePool.mof") +#pragma include ("Core/CIM_ElementCapabilities.mof") +#pragma include ("Core/CIM_HostedService.mof") diff -r 9e5646062752 -r 1492b21f3650 base_schema/cimv2.21.0-interop_mof --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/base_schema/cimv2.21.0-interop_mof Wed May 13 07:40:47 2009 -0700 @@ -0,0 +1,28 @@ +#pragma locale ("en_US") +#pragma include ("qualifiers.mof") +#pragma include ("qualifiers_optional.mof") +#pragma include ("Core/CIM_ManagedElement.mof") +#pragma include ("Core/CIM_ManagedSystemElement.mof") +#pragma include ("Core/CIM_LogicalElement.mof") +#pragma include ("Core/CIM_EnabledLogicalElement.mof") +#pragma include ("Core/CIM_System.mof") +#pragma include ("System/CIM_ComputerSystem.mof") +#pragma include ("Interop/CIM_RegisteredSpecification.mof") +#pragma include ("Interop/CIM_RegisteredProfile.mof") +#pragma include ("Interop/CIM_RegisteredSubProfile.mof") +#pragma include ("Core/CIM_Dependency.mof") +#pragma include ("Interop/CIM_ElementConformsToProfile.mof") +#pragma include ("Interop/CIM_ReferencedSpecification.mof") +#pragma include ("Interop/CIM_ReferencedProfile.mof") +#pragma include ("Interop/CIM_SubProfileRequiresProfile.mof") +#pragma include ("Core/CIM_Service.mof") +#pragma include ("Core/CIM_SettingData.mof") +#pragma include ("Core/CIM_VirtualSystemSettingData.mof") +#pragma include ("Core/CIM_LogicalDevice.mof") +#pragma include ("Core/CIM_ResourceAllocationSettingData.mof") +#pragma include ("Interop/CIM_Error.mof") +#pragma include ("Core/CIM_Job.mof") +#pragma include ("Core/CIM_ConcreteJob.mof") +#pragma include ("Core/CIM_ResourcePool.mof") +#pragma include ("Core/CIM_Capabilities.mof") +#pragma include ("Core/CIM_AllocationCapabilities.mof") diff -r 9e5646062752 -r 1492b21f3650 base_schema/cimv216-cimv2_mof --- a/base_schema/cimv216-cimv2_mof Wed May 13 07:40:47 2009 -0700 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -Qualifier IsPUnit : boolean = false, - Scope(property, method, parameter); - -Qualifier Experimental : boolean = false, - Scope(any), - Flavor(EnableOverride, Restricted); - -#pragma include ("Core/CIM_ResourcePool.mof") -#pragma include ("Core/CIM_HostedResourcePool.mof") -#pragma include ("Core/CIM_ElementCapabilities.mof") -#pragma include ("Core/CIM_HostedService.mof") diff -r 9e5646062752 -r 1492b21f3650 base_schema/cimv216-interop_mof --- a/base_schema/cimv216-interop_mof Wed May 13 07:40:47 2009 -0700 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,26 +0,0 @@ -#pragma locale ("en_US") -#pragma include ("qualifiers.mof") -#pragma include ("qualifiers_optional.mof") -#pragma include ("Core/CIM_ManagedElement.mof") -#pragma include ("Core/CIM_ManagedSystemElement.mof") -#pragma include ("Core/CIM_LogicalElement.mof") -#pragma include ("Core/CIM_EnabledLogicalElement.mof") -#pragma include ("Core/CIM_System.mof") -#pragma include ("System/CIM_ComputerSystem.mof") -#pragma include ("Interop/CIM_RegisteredProfile.mof") -#pragma include ("Interop/CIM_RegisteredSubProfile.mof") -#pragma include ("Core/CIM_Dependency.mof") -#pragma include ("Interop/CIM_ElementConformsToProfile.mof") -#pragma include ("Interop/CIM_ReferencedProfile.mof") -#pragma include ("Interop/CIM_SubProfileRequiresProfile.mof") -#pragma include ("Core/CIM_Service.mof") -#pragma include ("Core/CIM_SettingData.mof") -#pragma include ("Core/CIM_VirtualSystemSettingData.mof") -#pragma include ("Core/CIM_LogicalDevice.mof") -#pragma include ("Core/CIM_ResourceAllocationSettingData.mof") -#pragma include ("Interop/CIM_Error.mof") -#pragma include ("Core/CIM_Job.mof") -#pragma include ("Core/CIM_ConcreteJob.mof") -#pragma include ("Core/CIM_ResourcePool.mof") -#pragma include ("Core/CIM_Capabilities.mof") -#pragma include ("Core/CIM_AllocationCapabilities.mof")

# HG changeset patch # User Kaitlin Rupert <karupert@us.ibm.com> # Date 1242225647 25200 # Node ID 278f70bf80e0b192f79d9af225b161ea795e852a # Parent 1492b21f3650f7febcfcade71c75b58a6c25982f Remove migration related super classes These classes are now a part of the 2.21 schema. Also remove the TransportType attribute - this is part of the VirtualSystemMigrationSettingData class. The valuemap has changed, so the UNIX transport type needs to have a value of 32768 instead of 6. Add new parameters to migration methods - make these optional since we don't currently use them. Signed-off-by: Kaitlin Rupert <karupert@us.ibm.com> diff -r 1492b21f3650 -r 278f70bf80e0 schema/VSMigrationCapabilities.mof --- a/schema/VSMigrationCapabilities.mof Wed May 13 07:40:47 2009 -0700 +++ b/schema/VSMigrationCapabilities.mof Wed May 13 07:40:47 2009 -0700 @@ -1,15 +1,5 @@ // Copyright IBM Corp. 2007 -class CIM_VirtualSystemMigrationCapabilities : CIM_Capabilities { - - uint16 DestinationHostFormatsSupported[]; - - uint16 SynchronousMethodsSupported[]; - - uint16 AsynchronousMethodsSupported[]; - -}; - [Provider("cmpi::Virt_VSMigrationCapabilities")] class Xen_VirtualSystemMigrationCapabilities : CIM_VirtualSystemMigrationCapabilities { }; diff -r 1492b21f3650 -r 278f70bf80e0 schema/VSMigrationService.mof --- a/schema/VSMigrationService.mof Wed May 13 07:40:47 2009 -0700 +++ b/schema/VSMigrationService.mof Wed May 13 07:40:47 2009 -0700 @@ -1,70 +1,5 @@ // Copyright IBM Corp. 2007 -// Placeholder definition until schema is available upstream - -class CIM_VirtualSystemMigrationService : CIM_Service { - uint32 CheckVirtualSystemIsMigratableToHost( - [In] - CIM_ComputerSystem REF ComputerSystem, - [In] - string DestinationHost, - [In, EmbeddedInstance("CIM_SettingData")] - string MigrationSettingData, - [In, EmbeddedInstance("CIM_VirtualSystemSettingData")] - string NewSystemSettingData, - [In, EmbeddedInstance("CIM_ResourceAllocationSettingData")] - string NewResourceSettingData[], - [Out] - boolean IsMigratable - ); - - uint32 CheckVirtualSystemIsMigratableToSystem( - [In] - CIM_ComputerSystem REF ComputerSystem, - [In] - CIM_System REF DestinationSystem, - [In, EmbeddedInstance("CIM_SettingData")] - string MigrationSettingData, - [In, EmbeddedInstance("CIM_VirtualSystemSettingData")] - string NewSystemSettingData, - [In, EmbeddedInstance("CIM_ResourceAllocationSettingData")] - string NewResourceSettingData[], - [Out] - boolean IsMigratable - ); - - - uint32 MigrateVirtualSystemToHost( - [In] - CIM_ComputerSystem REF ComputerSystem, - [In] - string DestinationHost, - [In, EmbeddedInstance("CIM_SettingData")] - string MigrationSettingData, - [In, EmbeddedInstance("CIM_VirtualSystemSettingData")] - string NewSystemSettingData, - [In, EmbeddedInstance("CIM_ResourceAllocationSettingData")] - string NewResourceSettingData[], - [Out] - CIM_ConcreteJob REF Job - ); - - uint32 MigrateVirtualSystemToSystem( - [In] - CIM_ComputerSystem REF ComputerSystem, - [In] - CIM_System REF DestinationSystem, - [In, EmbeddedInstance("CIM_SettingData")] - string MigrationSettingData, - [In, EmbeddedInstance("CIM_VirtualSystemSettingData")] - string NewSystemSettingData, - [In, EmbeddedInstance("CIM_ResourceAllocationSettingData")] - string NewResourceSettingData[], - [Out] - CIM_ConcreteJob REF Job - ); -}; - class Xen_MigrationJob : CIM_ConcreteJob { }; diff -r 1492b21f3650 -r 278f70bf80e0 schema/VSMigrationSettingData.mof --- a/schema/VSMigrationSettingData.mof Wed May 13 07:40:47 2009 -0700 +++ b/schema/VSMigrationSettingData.mof Wed May 13 07:40:47 2009 -0700 @@ -1,45 +1,16 @@ // Copyright IBM Corp. 2007 -class CIM_VirtualSystemMigrationSettingData : CIM_SettingData { - [ Description( - "MigrationType describes a type of migration operation " - "to be performed.\n" - "A value of 2 - Virtual System is to be migrated in a 'live' " - "manner such that the running of the Virtual System is " - "minimally impacted during the move.\n" - "A value of 3 - Virtual System will be temporarily paused " - "prior to migration and then resume running after it is " - "moved.\n" - "A value of 4 - The Virtual System will be quiesced to a " - "stopped state prior to migration and then restarted after " - "it is moved."), - ValueMap {"0","1","2","3","4"}, - Values { "Unknown", "Other", "Live", "Resume", "Restart" }] - uint16 MigrationType; - - uint16 Priority; -}; - [Provider("cmpi::Virt_VSMigrationSettingData")] class Xen_VirtualSystemMigrationSettingData : CIM_VirtualSystemMigrationSettingData { - [ ValueMap {"0","1","2","3","4","5","6"}, - Values { "Unknown", "Other", "SSH", "TLS", "TLS Strict", "TCP", "UNIX" }] - uint16 TransportType; string CheckParameters[]; }; [Provider("cmpi::Virt_VSMigrationSettingData")] class KVM_VirtualSystemMigrationSettingData : CIM_VirtualSystemMigrationSettingData { - [ ValueMap {"0","1","2","3","4","5","6"}, - Values { "Unknown", "Other", "SSH", "TLS", "TLS Strict", "TCP", "UNIX" }] - uint16 TransportType; string CheckParameters[]; }; [Provider("cmpi::Virt_VSMigrationSettingData")] class LXC_VirtualSystemMigrationSettingData : CIM_VirtualSystemMigrationSettingData { - [ ValueMap {"0","1","2","3","4","5","6"}, - Values { "Unknown", "Other", "SSH", "TLS", "TLS Strict", "TCP", "UNIX" }] - uint16 TransportType; string CheckParameters[]; }; diff -r 1492b21f3650 -r 278f70bf80e0 src/Virt_VSMigrationService.c --- a/src/Virt_VSMigrationService.c Wed May 13 07:40:47 2009 -0700 +++ b/src/Virt_VSMigrationService.c Wed May 13 07:40:47 2009 -0700 @@ -1510,6 +1510,8 @@ .args = {{"ComputerSystem", CMPI_ref, false}, {"DestinationHost", CMPI_string, false}, {"MigrationSettingData", CMPI_instance, true}, + {"NewSystemSettingData", CMPI_instance, true}, + {"NewResourceSettingData", CMPI_instanceA, true}, ARG_END } }; @@ -1520,6 +1522,8 @@ .args = {{"ComputerSystem", CMPI_ref, false}, {"DestinationSystem", CMPI_ref, false}, {"MigrationSettingData", CMPI_instance, true}, + {"NewSystemSettingData", CMPI_instance, true}, + {"NewResourceSettingData", CMPI_instanceA, true}, ARG_END } }; @@ -1530,6 +1534,8 @@ .args = {{"ComputerSystem", CMPI_ref, false}, {"DestinationHost", CMPI_string, false}, {"MigrationSettingData", CMPI_instance, true}, + {"NewSystemSettingData", CMPI_instance, true}, + {"NewResourceSettingData", CMPI_instanceA, true}, ARG_END } }; @@ -1540,6 +1546,8 @@ .args = {{"ComputerSystem", CMPI_ref, false}, {"DestinationSystem", CMPI_ref, false}, {"MigrationSettingData", CMPI_instance, true}, + {"NewSystemSettingData", CMPI_instance, true}, + {"NewResourceSettingData", CMPI_instanceA, true}, ARG_END } }; diff -r 1492b21f3650 -r 278f70bf80e0 src/Virt_VSMigrationSettingData.h --- a/src/Virt_VSMigrationSettingData.h Wed May 13 07:40:47 2009 -0700 +++ b/src/Virt_VSMigrationSettingData.h Wed May 13 07:40:47 2009 -0700 @@ -30,7 +30,7 @@ CIM_MIGRATE_URI_TLS = 3, CIM_MIGRATE_URI_TLS_STRICT = 4, CIM_MIGRATE_URI_TCP = 5, - CIM_MIGRATE_URI_UNIX = 6, + CIM_MIGRATE_URI_UNIX = 32768, } transport_type; CMPIStatus get_migration_sd(const CMPIObjectPath *ref,

# HG changeset patch # User Kaitlin Rupert <karupert@us.ibm.com> # Date 1242225647 25200 # Node ID 63db2ab071a4a4505393456de90217aaf8dc3a75 # Parent 278f70bf80e0b192f79d9af225b161ea795e852a CRS attribute MaxConcurrentEnabledSAPs has changed to MaxCurrentEnabledSAPs Fixing name change of attributes in ConsoleRedirectionService Signed-off-by: Kaitlin Rupert <karupert@us.ibm.com> diff -r 278f70bf80e0 -r 63db2ab071a4 src/Virt_ConsoleRedirectionService.c --- a/src/Virt_ConsoleRedirectionService.c Wed May 13 07:40:47 2009 -0700 +++ b/src/Virt_ConsoleRedirectionService.c Wed May 13 07:40:47 2009 -0700 @@ -84,7 +84,7 @@ (CMPIValue *)&array, CMPI_uint16A); prop_val = (uint16_t)MAX_SAP_SESSIONS; - CMSetProperty(inst, "MaxConcurrentEnabledSAPs", + CMSetProperty(inst, "MaxCurrentEnabledSAPs", (CMPIValue *)&prop_val, CMPI_uint16); prop_val = (uint16_t)CIM_CRS_SHARING_MODE;

# HG changeset patch # User Kaitlin Rupert <karupert@us.ibm.com> # Date 1242689958 25200 # Node ID 853db606f335086710612450a93bfd67c1293922 # Parent 63db2ab071a4a4505393456de90217aaf8dc3a75 Remove VSSS definition from implementation specific mof The VirtualSystemSnapshotService class is available in the 2.21 schema. Signed-off-by: Kaitlin Rupert <karupert@us.ibm.com> diff -r 63db2ab071a4 -r 853db606f335 schema/VirtualSystemSnapshotService.mof --- a/schema/VirtualSystemSnapshotService.mof Wed May 13 07:40:47 2009 -0700 +++ b/schema/VirtualSystemSnapshotService.mof Mon May 18 16:39:18 2009 -0700 @@ -1,59 +1,5 @@ // Copyright IBM Corp. 2008 -[Description ( - "Service to create, apply and destroy snapshots of virtual systems." - )] -class Virt_VirtualSystemSnapshotService: CIM_VirtualSystemSnapshotService { - [Override, Description ( "Creates a snapshot of a virtual system." ), - ValueMap { "0", "1", "2", "3", "4", "5", "6", "..", "4096", - "4097..32767", "32768..65535" }, - Values { "Completed with No Error", "Not Supported", - "Failed", "Timeout", "Invalid Parameter", "Invalid State", - "Invalid Type", "DMTF Reserved", - "Method Parameters Checked - Job Started", - "Method Reserved", "Vendor Specific" }] - uint32 CreateSnapshot( - [In, Description ( - "Reference to the affected virtual system." )] - CIM_ComputerSystem REF AffectedSystem, - [In, Description ( "Parameter settings." ), - EmbeddedInstance ( "CIM_SettingData" )] - string SnapshotSettings, - [In, Description ( - "Requested snapshot type:\n" - "Full Snapshot: Complete snapshot of the virtual system.\n" - "Disk Snapshot: Snapshot of virtual system disks.\n" - "Memory Snapshot: Snapshot of virtual system memory only. " - "The virtual system remains active after memory snapshot " - "is complete.\n" - "Memory Snapshot Terminal: Snapshot of virtual system " - "memory only. The virtual system is transitioned to " - "disabled state after the memory snapshot is complete.\n" ), - ValueMap { "2", "3", "..", "32768", "32769", "32770..65535" }, - Values { "Full Snapshot", "Disk Snapshot", - "DMTF Reserved", "Memory Snapshot", "Memory Snapshot Terminal", - "Vendor Specific" }, - ModelCorrespondence { - "CIM_VirtualSystemSnapshotCapabilities.SnapshotTypesEnabled", - "CIM_VirtualSystemSnapshotServiceCapabilities.SnapshotTypesSupported" }] - uint16 SnapshotType, - [In, Out, Description ( - "Resulting virtual system snapshot" )] - CIM_VirtualSystemSettingData REF ResultingSnapshot, - [In, Out, Description ( - "If the operation is long running, then optionally " - "a job may be returned. In this case, the instance " - "of the CIM_VirtualSystemSettingData class " - "representing the new virtual system snapshot is " - "presented via the CIM_AffectedJobElement " - "association with the value of the AffectedElement " - "property referring to the new instance of the " - "CIM_VirtualSystemSettingData class representing " - "the virtual system snapshot and and the value of " - "the ElementEffects set to 5 (Create)." )] - CIM_ConcreteJob REF Job); -}; - class Xen_VirtualSystemSnapshotService : Virt_VirtualSystemSnapshotService { }; class KVM_VirtualSystemSnapshotService : Virt_VirtualSystemSnapshotService { }; class LXC_VirtualSystemSnapshotService : Virt_VirtualSystemSnapshotService { };

+1 Kaitlin Rupert wrote:
This patchset provides the set of changes needed to upgrade to scheam 2.21.
The easiest way to test this is to do the following:
1) make preuninstall 2) make uninstall 3) Recongifure your source tree to pick up the makefile changes 5) make 6) make preinstall 7) Restart your CIMOM (to be sure to pick up the new schema) 8) make install 9) make postinstall
I've also testing this by uninstalling Pegasus / sfcb and removing the repository. Then reinstalling Pegasus / sfcb and doing the steps above.
_______________________________________________ Libvirt-cim mailing list Libvirt-cim@redhat.com https://www.redhat.com/mailman/listinfo/libvirt-cim
-- Richard Maciel, MSc IBM Linux Technology Center rmaciel@linux.vnet.ibm.com
participants (2)
-
Kaitlin Rupert
-
Richard Maciel