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 /
ipalib /
install /
Delete
Unzip
Name
Size
Permission
Date
Action
__init__.py
71
B
-rw-r--r--
2020-04-02 03:45
__init__.pyc
146
B
-rw-r--r--
2023-06-13 03:24
__init__.pyo
146
B
-rw-r--r--
2023-06-13 03:24
certmonger.py
24.96
KB
-rw-r--r--
2020-04-02 03:45
certmonger.pyc
22.9
KB
-rw-r--r--
2023-06-13 03:24
certmonger.pyo
22.9
KB
-rw-r--r--
2023-06-13 03:24
certstore.py
14.24
KB
-rw-r--r--
2023-06-13 03:19
certstore.pyc
11.48
KB
-rw-r--r--
2023-06-13 03:24
certstore.pyo
11.48
KB
-rw-r--r--
2023-06-13 03:24
hostname.py
1.66
KB
-rw-r--r--
2020-04-02 03:45
hostname.pyc
1.84
KB
-rw-r--r--
2023-06-13 03:24
hostname.pyo
1.84
KB
-rw-r--r--
2023-06-13 03:24
kinit.py
4.43
KB
-rw-r--r--
2020-04-02 03:45
kinit.pyc
4.1
KB
-rw-r--r--
2023-06-13 03:24
kinit.pyo
4.1
KB
-rw-r--r--
2023-06-13 03:24
service.py
4.55
KB
-rw-r--r--
2020-04-02 03:45
service.pyc
6.15
KB
-rw-r--r--
2023-06-13 03:24
service.pyo
6.15
KB
-rw-r--r--
2023-06-13 03:24
sysrestore.py
13.42
KB
-rw-r--r--
2020-04-02 03:45
sysrestore.pyc
13.37
KB
-rw-r--r--
2023-06-13 03:24
sysrestore.pyo
13.37
KB
-rw-r--r--
2023-06-13 03:24
Save
Rename
# # Copyright (C) 2016 FreeIPA Contributors see COPYING for license # """ Host name installer module """ from ipapython.install import typing from ipapython.install.core import knob from ipapython.ipautil import CheckedIPAddress from . import service from .service import prepare_only class HostNameInstallInterface(service.ServiceInstallInterface): """ Interface common to all service installers which create DNS address records for `host_name` """ ip_addresses = knob( # pylint: disable=invalid-sequence-index typing.List[CheckedIPAddress], None, description="Specify IP address that should be added to DNS. This " "option can be used multiple times", cli_names='--ip-address', cli_metavar='IP_ADDRESS', ) ip_addresses = prepare_only(ip_addresses) @ip_addresses.validator def ip_addresses(self, values): for value in values: try: CheckedIPAddress(value) except Exception as e: raise ValueError("invalid IP address {0}: {1}".format( value, e)) all_ip_addresses = knob( None, description="All routable IP addresses configured on any interface " "will be added to DNS", ) all_ip_addresses = prepare_only(all_ip_addresses) no_host_dns = knob( None, description="Do not use DNS for hostname lookup during installation", ) no_host_dns = prepare_only(no_host_dns) no_wait_for_dns = knob( None, description="do not wait until the host is resolvable in DNS", ) no_wait_for_dns = prepare_only(no_wait_for_dns)