Linux server.edchosting.com 4.18.0-553.79.1.lve.el7h.x86_64 #1 SMP Wed Oct 15 16:34:46 UTC 2025 x86_64
LiteSpeed
Server IP : 75.98.162.185 & Your IP : 216.73.216.163
Domains :
Cant Read [ /etc/named.conf ]
User : goons4good
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib /
python2.7 /
site-packages /
ipaclient /
install /
Delete
Unzip
Name
Size
Permission
Date
Action
__init__.py
71
B
-rw-r--r--
2020-04-02 03:45
__init__.pyc
149
B
-rw-r--r--
2023-06-13 03:24
__init__.pyo
149
B
-rw-r--r--
2023-06-13 03:24
automount.py
653
B
-rw-r--r--
2020-04-02 03:45
automount.pyc
1004
B
-rw-r--r--
2023-06-13 03:24
automount.pyo
1004
B
-rw-r--r--
2023-06-13 03:24
client.py
124.83
KB
-rw-r--r--
2023-06-13 03:19
client.pyc
88.88
KB
-rw-r--r--
2023-06-13 03:24
client.pyo
88.88
KB
-rw-r--r--
2023-06-13 03:24
ipa_certupdate.py
7.46
KB
-rw-r--r--
2020-04-02 03:45
ipa_certupdate.pyc
7.47
KB
-rw-r--r--
2023-06-13 03:24
ipa_certupdate.pyo
7.47
KB
-rw-r--r--
2023-06-13 03:24
ipa_client_install.py
1.61
KB
-rw-r--r--
2020-04-02 03:45
ipa_client_install.pyc
2.25
KB
-rw-r--r--
2023-06-13 03:24
ipa_client_install.pyo
2.25
KB
-rw-r--r--
2023-06-13 03:24
ipachangeconf.py
19.3
KB
-rw-r--r--
2020-04-02 03:45
ipachangeconf.pyc
15.38
KB
-rw-r--r--
2023-06-13 03:24
ipachangeconf.pyo
15.38
KB
-rw-r--r--
2023-06-13 03:24
ipadiscovery.py
21.9
KB
-rw-r--r--
2020-04-02 03:45
ipadiscovery.pyc
15.2
KB
-rw-r--r--
2023-06-13 03:24
ipadiscovery.pyo
15.13
KB
-rw-r--r--
2023-06-13 03:24
ntpconf.py
8.02
KB
-rw-r--r--
2020-04-02 03:45
ntpconf.pyc
8.15
KB
-rw-r--r--
2023-06-13 03:24
ntpconf.pyo
8.15
KB
-rw-r--r--
2023-06-13 03:24
sssd.py
1.46
KB
-rw-r--r--
2020-04-02 03:45
sssd.pyc
1.43
KB
-rw-r--r--
2023-06-13 03:24
sssd.pyo
1.43
KB
-rw-r--r--
2023-06-13 03:24
Save
Rename
# # Copyright (C) 2016 FreeIPA Contributors see COPYING for license # from __future__ import absolute_import from ipaclient.install import client from ipaplatform.paths import paths from ipapython.install import cli from ipapython.install.core import knob, extend_knob class StandaloneClientInstall(client.ClientInstall): no_host_dns = False no_wait_for_dns = False principal = client.ClientInstall.principal principal = extend_knob( principal, cli_names=list(principal.cli_names) + ['-p'], ) password = knob( str, None, sensitive=True, description="password to join the IPA realm (assumes bulk password " "unless principal is also set)", cli_names=[None, '-w'], ) @property def admin_password(self): if self.principal: return self.password return super(StandaloneClientInstall, self).admin_password @property def host_password(self): if not self.principal: return self.password return super(StandaloneClientInstall, self).host_password prompt_password = knob( None, description="Prompt for a password to join the IPA realm", cli_names='-W', ) on_master = knob( None, deprecated=True, ) ClientInstall = cli.install_tool( StandaloneClientInstall, command_name='ipa-client-install', log_file_name=paths.IPACLIENT_INSTALL_LOG, debug_option=True, verbose=True, console_format='%(message)s', uninstall_log_file_name=paths.IPACLIENT_UNINSTALL_LOG, ) def run(): ClientInstall.run_cli()