(self, config_args=())
| 433 | self._post_install_4xx() |
| 434 | |
| 435 | def _build_src(self, config_args=()): |
| 436 | if self.version.startswith(("3.", "4.")): |
| 437 | config_args += ("enable-fips",) |
| 438 | super()._build_src(config_args) |
| 439 | |
| 440 | def _post_install_3xx(self): |
| 441 | # create ssl/ subdir with example configs |
nothing calls this directly
no test coverage detected