(self)
| 681 | return r.exit_code |
| 682 | |
| 683 | def apache_restart(self): |
| 684 | self.apache_stop() |
| 685 | r = self._run_apachectl("start") |
| 686 | if r.exit_code == 0: |
| 687 | timeout = timedelta(seconds=10) |
| 688 | return 0 if self.is_live(self._http_base, timeout=timeout) else -1 |
| 689 | return r.exit_code |
| 690 | |
| 691 | def apache_stop(self): |
| 692 | r = self._run_apachectl("stop") |