Take a load and send it across the network to ssh minions
(self, load, ssh_minions=False)
| 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 | """ |