Execute salt-key
(self, arg_str, catch_stderr=False, with_retcode=False, config_dir=None)
| 216 | return ret |
| 217 | |
| 218 | def run_key(self, arg_str, catch_stderr=False, with_retcode=False, config_dir=None): |
| 219 | """ |
| 220 | Execute salt-key |
| 221 | """ |
| 222 | return self.run_script( |
| 223 | "salt-key", |
| 224 | arg_str, |
| 225 | catch_stderr=catch_stderr, |
| 226 | with_retcode=with_retcode, |
| 227 | config_dir=config_dir, |
| 228 | ) |
| 229 | |
| 230 | def run_cp( |
| 231 | self, |
nothing calls this directly
no test coverage detected