MCPcopy
hub / github.com/saltstack/salt / _send_ssh_pub

Method _send_ssh_pub

salt/master.py:4166–4172  ·  view source on GitHub ↗

Take a load and send it across the network to ssh minions

(self, load, ssh_minions=False)

Source from the content-addressed store, hash-verified

4164 return self._ssh_client
4165
4166 def _send_ssh_pub(self, load, ssh_minions=False):
4167 """
4168 Take a load and send it across the network to ssh minions
4169 """
4170 if self.opts["enable_ssh_minions"] is True and ssh_minions is True:
4171 log.debug("Send payload to ssh minions")
4172 threading.Thread(target=self.ssh_client.cmd, kwargs=load).start()
4173
4174 def _prep_pub(self, minions, jid, clear_load, extra, missing):
4175 """

Callers 1

publishMethod · 0.95

Calls 2

debugMethod · 0.80
startMethod · 0.45

Tested by

no test coverage detected