Linux ams-business-8.hostwindsdns.com 4.18.0-553.80.1.lve.el8.x86_64 #1 SMP Wed Oct 22 19:29:36 UTC 2025 x86_64
LiteSpeed
Server IP : 192.236.177.161 & Your IP : 216.73.216.50
Domains :
Cant Read [ /etc/named.conf ]
User : ajzdfbpz
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib /
python3.6 /
site-packages /
cloudinit /
cmd /
devel /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2026-01-24 08:06
__init__.py
898
B
-rw-r--r--
2023-12-04 11:47
hotplug_hook.py
8.94
KB
-rw-r--r--
2023-12-04 11:47
logs.py
9.86
KB
-rw-r--r--
2023-12-04 11:47
make_mime.py
4.09
KB
-rw-r--r--
2023-12-04 11:47
net_convert.py
5.54
KB
-rw-r--r--
2023-12-04 11:47
parser.py
1.35
KB
-rw-r--r--
2023-12-04 11:47
render.py
3.42
KB
-rw-r--r--
2023-12-04 11:47
Save
Rename
# This file is part of cloud-init. See LICENSE file for license information. """Common cloud-init devel commandline utility functions.""" from cloudinit.helpers import Paths from cloudinit.stages import Init def read_cfg_paths(fetch_existing_datasource: str = "") -> Paths: """Return a Paths object based on the system configuration on disk. :param fetch_existing_datasource: String one of check or trust. Whether to load the pickled datasource before returning Paths. This is necessary when using instance paths via Paths.get_ipath method which are only known from the instance-id metadata in the detected datasource. :raises: DataSourceNotFoundException when no datasource cache exists. """ init = Init(ds_deps=[]) if fetch_existing_datasource: init.fetch(existing=fetch_existing_datasource) init.read_cfg() return init.paths