HEX
Server: LiteSpeed
System: Linux s3604.bom1.stableserver.net 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
User: dmstechonline (1480)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: //usr/lib/python3.6/site-packages/ipaplatform/rhel_container/services.py
#
# Copyright (C) 2020  FreeIPA Contributors see COPYING for license
#
"""RHEL container services
"""
from ipaplatform.rhel import services as rhel_services


rhel_container_system_units = rhel_services.rhel_system_units.copy()


class RHELContainerService(rhel_services.RHELService):
    system_units = rhel_container_system_units


def rhel_container_service_class_factory(name, api=None):
    return rhel_services.rhel_service_class_factory(name, api)


class RHELContainerServices(rhel_services.RHELServices):
    def service_class_factory(self, name, api=None):
        return rhel_container_service_class_factory(name, api)


timedate_services = rhel_services.timedate_services
service = rhel_container_service_class_factory
knownservices = RHELContainerServices()