コード例 #1
0
ファイル: main.py プロジェクト: visionzk/certbot
def rename(config, unused_plugins):
    """Rename a certificate

    Use the information in the config file to rename an existing
    lineage.
    """
    cert_manager.rename_lineage(config)
コード例 #2
0
ファイル: main.py プロジェクト: mihailim/letsencrypt
def rename(config, unused_plugins):
    """Rename a certificate

    Use the information in the config file to rename an existing
    lineage.
    """
    cert_manager.rename_lineage(config)
コード例 #3
0
ファイル: main.py プロジェクト: J0WI/lets-encrypt-preview
def rename(config, unused_plugins):
    """Rename a certificate

    Use the information in the config file to rename an existing
    lineage.

    :param config: Configuration object
    :type config: interfaces.IConfig

    :param unused_plugins: List of plugins (deprecated)
    :type unused_plugins: `list` of `str`

    :returns: `None`
    :rtype: None

    """
    cert_manager.rename_lineage(config)
コード例 #4
0
ファイル: main.py プロジェクト: nbebout/certbot
def rename(config, unused_plugins):
    """Rename a certificate

    Use the information in the config file to rename an existing
    lineage.

    :param config: Configuration object
    :type config: interfaces.IConfig

    :param unused_plugins: List of plugins (deprecated)
    :type unused_plugins: `list` of `str`

    :returns: `None`
    :rtype: None

    """
    cert_manager.rename_lineage(config)
コード例 #5
0
 def _call(self, *args, **kwargs):
     from certbot import cert_manager
     return cert_manager.rename_lineage(*args, **kwargs)
コード例 #6
0
 def _call(self, *args, **kwargs):
     from certbot import cert_manager
     return cert_manager.rename_lineage(*args, **kwargs)