2016-06-14 09:58:24 -05:00
|
|
|
#
|
|
|
|
# Copyright (C) 2016 FreeIPA Contributors see COPYING for license
|
|
|
|
#
|
|
|
|
|
2016-11-28 07:50:57 -06:00
|
|
|
from ipalib.misc import env as _env
|
|
|
|
from ipalib.misc import plugins as _plugins
|
2016-06-14 09:58:24 -05:00
|
|
|
from ipalib.plugable import Registry
|
|
|
|
|
|
|
|
register = Registry()
|
|
|
|
|
|
|
|
|
2016-06-27 02:33:29 -05:00
|
|
|
@register(override=True, no_fail=True)
|
2016-11-28 07:50:57 -06:00
|
|
|
class env(_env):
|
2016-06-14 09:58:24 -05:00
|
|
|
def output_for_cli(self, textui, output, *args, **options):
|
2016-06-20 05:32:54 -05:00
|
|
|
output = dict(output)
|
|
|
|
output.pop('count', None)
|
|
|
|
output.pop('total', None)
|
2016-06-14 09:58:24 -05:00
|
|
|
options['all'] = True
|
|
|
|
return super(env, self).output_for_cli(textui, output,
|
|
|
|
*args, **options)
|
|
|
|
|
|
|
|
|
2016-06-27 02:33:29 -05:00
|
|
|
@register(override=True, no_fail=True)
|
2016-11-28 07:50:57 -06:00
|
|
|
class plugins(_plugins):
|
2016-06-14 09:58:24 -05:00
|
|
|
def output_for_cli(self, textui, output, *args, **options):
|
|
|
|
options['all'] = True
|
|
|
|
return super(plugins, self).output_for_cli(textui, output,
|
|
|
|
*args, **options)
|