| 201 | |
| 202 | #it covers RHEL7 |
| 203 | class sysConfigEL7(sysConfigAgentRedhat7Base): |
| 204 | def __init__(self, glbEnv): |
| 205 | super(sysConfigEL7, self).__init__(glbEnv) |
| 206 | self.services = [hostConfig(self), |
| 207 | securityPolicyConfigRedhat(self), |
| 208 | networkConfigRedhat(self), |
| 209 | libvirtConfigRedhat(self), |
| 210 | firewallConfigAgent(self), |
| 211 | nfsConfig(self), |
| 212 | cloudAgentConfig(self)] |
| 213 | |
| 214 | #it covers RHEL8 and later |
| 215 | class sysConfigEL(sysConfigAgentELBase): |