| 213 | |
| 214 | #it covers RHEL8 and later |
| 215 | class sysConfigEL(sysConfigAgentELBase): |
| 216 | def __init__(self, glbEnv): |
| 217 | super(sysConfigEL, self).__init__(glbEnv) |
| 218 | self.services = [hostConfig(self), |
| 219 | securityPolicyConfigRedhat(self), |
| 220 | networkConfigRedhat(self), |
| 221 | libvirtConfigRedhat(self), |
| 222 | firewallConfigAgent(self), |
| 223 | nfsConfig(self), |
| 224 | cloudAgentConfig(self)] |
| 225 | |
| 226 | class sysConfigSUSE(sysConfigAgentSUSE): |
| 227 | def __init__(self, glbEnv): |