mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-23 07:33:27 -06:00
0ae7bebb76
During thin client refactoring, LocalOrRemote class implementation of `run` method was overriden by default Command implementation during instantiation of client plugins from schema. This caused these commands to always forward this request to IPA master. This patch restores the original behavior: unless `--server` option was specified, the commands will always print out local config. https://fedorahosted.org/freeipa/ticket/6490 Reviewed-By: Stanislav Laznicka <slaznick@redhat.com>
29 lines
886 B
Python
29 lines
886 B
Python
#
|
|
# Copyright (C) 2016 FreeIPA Contributors see COPYING for license
|
|
#
|
|
|
|
from ipalib.misc import env as _env
|
|
from ipalib.misc import plugins as _plugins
|
|
from ipalib.plugable import Registry
|
|
|
|
register = Registry()
|
|
|
|
|
|
@register(override=True, no_fail=True)
|
|
class env(_env):
|
|
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(_plugins):
|
|
def output_for_cli(self, textui, output, *args, **options):
|
|
options['all'] = True
|
|
return super(plugins, self).output_for_cli(textui, output,
|
|
*args, **options)
|