mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-23 15:40:01 -06:00
c1d8c710e7
This fixes API initialization errors when the remote server does not have the overriden command. https://fedorahosted.org/freeipa/ticket/4739 Reviewed-By: David Kupka <dkupka@redhat.com>
28 lines
871 B
Python
28 lines
871 B
Python
#
|
|
# Copyright (C) 2016 FreeIPA Contributors see COPYING for license
|
|
#
|
|
|
|
from ipaclient.frontend import CommandOverride
|
|
from ipalib.plugable import Registry
|
|
|
|
register = Registry()
|
|
|
|
|
|
@register(override=True, no_fail=True)
|
|
class env(CommandOverride):
|
|
def output_for_cli(self, textui, output, *args, **options):
|
|
output = dict(output)
|
|
output.pop('count', None)
|
|
output.pop('total', None)
|
|
options['all'] = True
|
|
return super(env, self).output_for_cli(textui, output,
|
|
*args, **options)
|
|
|
|
|
|
@register(override=True, no_fail=True)
|
|
class plugins(CommandOverride):
|
|
def output_for_cli(self, textui, output, *args, **options):
|
|
options['all'] = True
|
|
return super(plugins, self).output_for_cli(textui, output,
|
|
*args, **options)
|