mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
make sure all args are strings
when calling from `enable_ssh_minions` they could be other things.
This commit is contained in:
parent
7e9f673675
commit
3a5dc8e71b
1 changed files with 1 additions and 1 deletions
|
@ -1266,7 +1266,7 @@ ARGS = {10}\n'''.format(self.minion_config,
|
|||
self.argv = _convert_args(self.argv)
|
||||
log.debug(
|
||||
'Performing shimmed, blocking command as follows:\n%s',
|
||||
' '.join(self.argv)
|
||||
' '.join([six.text_type(arg) for arg in self.argv])
|
||||
)
|
||||
cmd_str = self._cmd_str()
|
||||
stdout, stderr, retcode = self.shim_cmd(cmd_str)
|
||||
|
|
Loading…
Add table
Reference in a new issue