Make the salt client call
(self)
| 123 | return files |
| 124 | |
| 125 | def run(self): |
| 126 | """ |
| 127 | Make the salt client call |
| 128 | """ |
| 129 | if self.opts["chunked"]: |
| 130 | ret = self.run_chunked() |
| 131 | else: |
| 132 | ret = self.run_oldstyle() |
| 133 | |
| 134 | salt.output.display_output(ret, self.opts.get("output", "nested"), self.opts) |
| 135 | |
| 136 | def run_oldstyle(self): |
| 137 | """ |
no test coverage detected