Check if puppet process is running.
(self)
| 226 | pass |
| 227 | |
| 228 | def is_running(self): |
| 229 | """Check if puppet process is running.""" |
| 230 | return self.process is not None and self.process.poll() is None |
| 231 | |
| 232 | def get_log_path(self): |
| 233 | """Get the path to the puppet log file.""" |
no outgoing calls
no test coverage detected