| 188 | |
| 189 | #it covers RHEL6 |
| 190 | class sysConfigEL6(sysConfigAgentRedhatBase): |
| 191 | def __init__(self, glbEnv): |
| 192 | super(sysConfigEL6, self).__init__(glbEnv) |
| 193 | self.services = [hostConfig(self), |
| 194 | cgroupConfig(self), |
| 195 | securityPolicyConfigRedhat(self), |
| 196 | networkConfigRedhat(self), |
| 197 | libvirtConfigRedhat(self), |
| 198 | firewallConfigAgent(self), |
| 199 | nfsConfig(self), |
| 200 | cloudAgentConfig(self)] |
| 201 | |
| 202 | #it covers RHEL7 |
| 203 | class sysConfigEL7(sysConfigAgentRedhat7Base): |