Coverage for certbot/updater.py : 100%

Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
"""Updaters run at renewal"""
"""Run updaters that the plugin supports
:param config: Configuration object :type config: interfaces.IConfig
:param lineage: Certificate lineage object :type lineage: storage.RenewableCert
:param plugins: List of plugins :type plugins: `list` of `str`
:returns: `None` :rtype: None """
"""Helper function to run deployer interface method if supported by the used installer plugin.
:param config: Configuration object :type config: interfaces.IConfig
:param lineage: Certificate lineage object :type lineage: storage.RenewableCert
:param installer: Installer object :type installer: interfaces.IInstaller
:returns: `None` :rtype: None """
interfaces.RenewDeployer):
"""Helper function to run the updater interface methods if supported by the used installer plugin.
:param lineage: Certificate lineage object :type lineage: storage.RenewableCert
:param installer: Installer object :type installer: interfaces.IInstaller
:returns: `None` :rtype: None """
"""Iterates through known enhancement interfaces. If the installer implements an enhancement interface and the enhance interface has an updater method, the updater method gets run.
:param lineage: Certificate lineage object :type lineage: storage.RenewableCert
:param installer: Installer object :type installer: interfaces.IInstaller
:param config: Configuration object :type config: interfaces.IConfig """
"""Iterates through known enhancement interfaces. If the installer implements an enhancement interface and the enhance interface has an deployer method, the deployer method gets run.
:param lineage: Certificate lineage object :type lineage: storage.RenewableCert
:param installer: Installer object :type installer: interfaces.IInstaller
:param config: Configuration object :type config: interfaces.IConfig """
|