403Webshell
Server IP : 172.64.80.1  /  Your IP : 216.73.216.175
Web Server : LiteSpeed
System : Linux srv13.swhc.ca 4.18.0-553.126.2.lve.el8.x86_64 #1 SMP Thu May 28 14:12:30 UTC 2026 x86_64
User : hongluck ( 2522)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /lib/python3.6/site-packages/ipaclient/plugins/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /lib/python3.6/site-packages/ipaclient/plugins/location.py
#
# 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

Youez - 2016 - github.com/yon3zu
LinuXploit