Execute salt-cloud
(self, arg_str, catch_stderr=False, timeout=None, config_dir=None)
| 300 | return self.run_call(arg_str, with_retcode, catch_stderr, local, timeout) |
| 301 | |
| 302 | def run_cloud(self, arg_str, catch_stderr=False, timeout=None, config_dir=None): |
| 303 | """ |
| 304 | Execute salt-cloud |
| 305 | """ |
| 306 | if timeout is None: |
| 307 | timeout = self.RUN_TIMEOUT |
| 308 | |
| 309 | ret = self.run_script( |
| 310 | "salt-cloud", arg_str, catch_stderr, timeout=timeout, config_dir=config_dir |
| 311 | ) |
| 312 | log.debug("Result of run_cloud for command '%s': %s", arg_str, ret) |
| 313 | return ret |
| 314 | |
| 315 | def run_spm( |
| 316 | self, |
nothing calls this directly
no test coverage detected