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 /
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 os import salt.cli.caller import salt.defaults.exitcodes import salt.utils.parsers from salt.config import _expand_glob_path from salt.utils.verify import verify_log class SaltCall(salt.utils.parsers.SaltCallOptionParser): """ Used to locally execute a salt command """ def run(self): """ Execute the salt call! """ self.parse_args() if self.options.file_root: # check if the argument is pointing to a file on disk file_root = os.path.abspath(self.options.file_root) self.config["file_roots"] = {"base": _expand_glob_path([file_root])} if self.options.pillar_root: # check if the argument is pointing to a file on disk pillar_root = os.path.abspath(self.options.pillar_root) self.config["pillar_roots"] = {"base": _expand_glob_path([pillar_root])} if self.options.states_dir: # check if the argument is pointing to a file on disk states_dir = os.path.abspath(self.options.states_dir) self.config["states_dirs"] = [states_dir] if self.options.local: self.config["file_client"] = "local" if self.options.master: self.config["master"] = self.options.master # Setup file logging! self.setup_logfile_logger() verify_log(self.config) caller = salt.cli.caller.Caller.factory(self.config) if self.options.doc: caller.print_docs() self.exit(salt.defaults.exitcodes.EX_OK) if self.options.grains_run: caller.print_grains() self.exit(salt.defaults.exitcodes.EX_OK) caller.run()