mirror of
https://github.com/certbot/certbot.git
synced 2026-05-28 04:34:11 -04:00
10 lines
339 B
Python
10 lines
339 B
Python
""" Distribution specific overrides for CentOS family (RHEL/Fedora/CentOS """
|
|
class Override(object):
|
|
"""CentOS override class"""
|
|
def __init__(self, config):
|
|
"""
|
|
Initializes the override class.
|
|
|
|
:param config: caller `certbot_apache.configurator.ApacheConfigurator`
|
|
"""
|
|
self.config = config
|