summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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();
};