from .Framework import PIDCountService


class HTTPServerCount(PIDCountService):
    def __init__(self):
        PIDCountService.__init__(self)
        self.pid_defs = [
        {
            'name': 'httpd',
            'cmdline_contains': 'httpd -k start',
            'user': 'root',
        },
    ]