summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPavel Březina <pbrezina@redhat.com>2014-05-08 15:08:40 +0200
committerPavel Březina <pbrezina@redhat.com>2014-05-09 19:38:43 +0200
commitff512c60dd0fce3a9b6ad76deb0230f7bac37696 (patch)
tree167a47155d21d1bf6af051e9a7f3079858ff33c5
parent811449f02e75b7bc71717f18f3ba74a888d8ccd6 (diff)
downloadopenlmi_sssd-ff512c60dd0fce3a9b6ad76deb0230f7bac37696.tar.gz
openlmi_sssd-ff512c60dd0fce3a9b6ad76deb0230f7bac37696.tar.xz
openlmi_sssd-ff512c60dd0fce3a9b6ad76deb0230f7bac37696.zip
CIM Schema v10
-rw-r--r--mof/LMI_SSSD.mof12
1 files changed, 6 insertions, 6 deletions
diff --git a/mof/LMI_SSSD.mof b/mof/LMI_SSSD.mof
index 70d0901..4a77230 100644
--- a/mof/LMI_SSSD.mof
+++ b/mof/LMI_SSSD.mof
@@ -62,25 +62,25 @@ class LMI_SSSDComponent : CIM_ManagedElement
[Description("Permanently change debug level of this component."),
ValueMap { "0", "1", "2", "3" },
- Values { "Success", "Failed", "Invalid arguments", "I/O error" }]
+ Values { "Success", "Failed", "Operation not supported", "I/O error" }]
uint32 SetDebugLevelPermanently([In] uint16 debug_level);
[Description("Change debug level of this component but switch it back "
"to the original value when SSSD is restarted."),
ValueMap { "0", "1", "2", "3" },
- Values { "Success", "Failed", "Invalid arguments", "I/O error" }]
+ Values { "Success", "Failed", "Operation not supported", "I/O error" }]
uint32 SetDebugLevelTemporarily([In] uint16 debug_level);
[Description("Enable this component. SSSD has to be restarted in order "
"this change to take any effect."),
- ValueMap { "0", "1", "3" },
- Values { "Success", "Failed", "I/O error" }]
+ ValueMap { "0", "1", "2", "3" },
+ Values { "Success", "Failed", "Operation not supported", "I/O error" }]
uint32 Enable();
[Description("Disable this component. SSSD has to be restarted in order "
"this change to take any effect."),
- ValueMap { "0", "1", "3" },
- Values { "Success", "Failed", "I/O error" }]
+ ValueMap { "0", "1", "2", "3" },
+ Values { "Success", "Failed", "Operation not supported", "I/O error" }]
uint32 Disable();
};