X-Git-Url: https://git.sesse.net/?p=letsencrypt-hitch-plugin;a=blobdiff_plain;f=hitch.py;h=edcaedda7a9885994121a5741607a30f7aa06eeb;hp=537e02cae7e180e3aacf7ad1136ed1f6593a6110;hb=HEAD;hpb=dc48edc0f420dc763740994a98b05ccd8939592c diff --git a/hitch.py b/hitch.py index 537e02c..edcaedd 100644 --- a/hitch.py +++ b/hitch.py @@ -4,13 +4,11 @@ import os import re import subprocess -import zope.component - from zope.interface import implementer, provider -from letsencrypt import errors -from letsencrypt import interfaces -from letsencrypt.plugins import common +from certbot import errors +from certbot import interfaces +from certbot.plugins import common logger = logging.getLogger(__name__) @@ -34,6 +32,10 @@ class Installer(common.Plugin): def get_all_names(self): raise errors.PluginError("not implemented") + @classmethod + def add_parser_arguments(cls, add): + pass + def deploy_cert(self, domain, cert_path, key_path, chain_path=None, fullchain_path=None): # Concatenate private key and certificate together into one file.