示例#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
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
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)
 def _call(self, *args, **kwargs):
     from certbot import cert_manager
     return cert_manager.rename_lineage(*args, **kwargs)