From: Steinar H. Gunderson Date: Sun, 16 Apr 2023 11:10:17 +0000 (+0200) Subject: Small update for certbot in bookworm. X-Git-Url: https://git.sesse.net/?p=letsencrypt-hitch-plugin;a=commitdiff_plain;h=HEAD Small update for certbot in bookworm. --- 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.