| Server IP : 198.38.94.13 / Your IP : 216.73.217.33 Web Server : Apache System : Linux d4744.dxb1.stableserver.net 5.14.0-611.49.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Apr 21 16:39:08 EDT 2026 x86_64 User : revivere ( 1140) PHP Version : 8.2.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /lib/python3.9/site-packages/ipaclient/plugins/ |
Upload File : |
#
# Copyright (C) 2016 FreeIPA Contributors see COPYING for license
#
from ipaclient.frontend import MethodOverride
from ipalib import _
from ipalib.plugable import Registry
register = Registry()
@register(override=True, no_fail=True)
class location_show(MethodOverride):
def output_for_cli(self, textui, output, *keys, **options):
rv = super(location_show, self).output_for_cli(
textui, output, *keys, **options)
servers = output.get('servers', {})
first = True
for details in servers.values():
if first:
textui.print_indented(_("Servers details:"), indent=1)
first = False
else:
textui.print_line("")
for param in self.api.Command.server_find.output_params():
if param.name in details:
textui.print_indented(
u"{}: {}".format(
param.label, u', '.join(details[param.name])),
indent=2)
return rv