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
/
usr /
lib /
python3.6 /
site-packages /
salt /
cli /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2022-10-11 05:09
__init__.py
73
B
-rw-r--r--
2022-05-16 09:16
api.py
2.32
KB
-rw-r--r--
2022-05-16 09:16
batch.py
12
KB
-rw-r--r--
2022-05-16 09:16
call.py
1.67
KB
-rw-r--r--
2022-05-16 09:16
caller.py
11.48
KB
-rw-r--r--
2022-05-16 09:16
cp.py
9.37
KB
-rw-r--r--
2022-05-16 09:16
daemons.py
21.05
KB
-rw-r--r--
2022-05-16 09:16
key.py
487
B
-rw-r--r--
2022-05-16 09:16
run.py
1.95
KB
-rw-r--r--
2022-05-16 09:16
salt.py
17.08
KB
-rw-r--r--
2022-05-16 09:16
spm.py
803
B
-rw-r--r--
2022-05-16 09:16
ssh.py
583
B
-rw-r--r--
2022-05-16 09:16
Save
Rename
import salt.defaults.exitcodes # pylint: disable=W0611 import salt.utils.parsers import salt.utils.profile from salt.exceptions import SaltClientError from salt.utils.verify import check_user, verify_log class SaltRun(salt.utils.parsers.SaltRunOptionParser): """ Used to execute Salt runners """ def run(self): """ Execute salt-run """ import salt.runner self.parse_args() # Setup file logging! self.setup_logfile_logger() verify_log(self.config) profiling_enabled = self.options.profiling_enabled runner = salt.runner.Runner(self.config) if self.options.doc: runner.print_docs() self.exit(salt.defaults.exitcodes.EX_OK) # Run this here so SystemExit isn't raised anywhere else when # someone tries to use the runners via the python API try: if check_user(self.config["user"]): pr = salt.utils.profile.activate_profile(profiling_enabled) try: ret = runner.run() # In older versions ret['data']['retcode'] was used # for signaling the return code. This has been # changed for the orchestrate runner, but external # runners might still use it. For this reason, we # also check ret['data']['retcode'] if # ret['retcode'] is not available. if isinstance(ret, dict) and "retcode" in ret: self.exit(ret["retcode"]) elif isinstance(ret, dict) and "retcode" in ret.get("data", {}): self.exit(ret["data"]["retcode"]) finally: salt.utils.profile.output_profile( pr, stats_path=self.options.profiling_path, stop=True ) except SaltClientError as exc: raise SystemExit(str(exc))