From b8b573a966f4be268031ccca5abce09767928ff7 Mon Sep 17 00:00:00 2001 From: Ana Krivokapic Date: Fri, 12 Apr 2013 17:38:09 +0200 Subject: Deprecate HBAC source hosts from CLI Hide the commands and options listed below from the CLI, but keep them in the API. When called directly from the API, raise appropriate exceptions informing the user that the functionality has been deprecated. Affected commands: hbacrule_add_sourcehost, hbacrule_remove_sourcehost. Affected options: sourcehostcategory, sourcehost_host and sourcehost_hostgroup (hbacrule); sourcehost (hbactest). https://fedorahosted.org/freeipa/ticket/3528 --- ipalib/errors.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'ipalib/errors.py') diff --git a/ipalib/errors.py b/ipalib/errors.py index 658c8cbc2..716decb2b 100644 --- a/ipalib/errors.py +++ b/ipalib/errors.py @@ -796,6 +796,21 @@ class PromptFailed(InvocationError): format = _('Could not get %(name)s interactively') +class DeprecationError(InvocationError): + """ + **3015** Raise when a command has been deprecated + + For example: + + >>> raise DeprecationError(name='hbacrule_add_sourcehost') + Traceback (most recent call last): + ... + DeprecationError: Command 'hbacrule_add_sourcehost' has been deprecated + """ + errno = 3015 + format = _("Command '%(name)s' has been deprecated") + + ############################################################################## # 4000 - 4999: Execution errors -- cgit