(self)
| 696 | return r |
| 697 | |
| 698 | def apache_graceful_stop(self): |
| 699 | log.debug("stop apache") |
| 700 | self._run_apachectl("graceful-stop") |
| 701 | return 0 if self.is_dead() else -1 |
| 702 | |
| 703 | def apache_fail(self): |
| 704 | log.debug("expect apache fail") |
nothing calls this directly
no test coverage detected