]> git.sesse.net Git - letsencrypt-hitch-plugin/commitdiff
Small update for certbot in bookworm. master
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Sun, 16 Apr 2023 11:10:17 +0000 (13:10 +0200)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Sun, 16 Apr 2023 11:10:17 +0000 (13:10 +0200)
hitch.py

index 537e02cae7e180e3aacf7ad1136ed1f6593a6110..edcaedda7a9885994121a5741607a30f7aa06eeb 100644 (file)
--- a/hitch.py
+++ b/hitch.py
@@ -4,13 +4,11 @@ import os
 import re
 import subprocess
 
 import re
 import subprocess
 
-import zope.component
-
 from zope.interface import implementer, provider
 
 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__)
 
 
 logger = logging.getLogger(__name__)
@@ -34,6 +32,10 @@ class Installer(common.Plugin):
     def get_all_names(self):
         raise errors.PluginError("not implemented")
 
     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.
     def deploy_cert(self, domain, cert_path, key_path,
                     chain_path=None, fullchain_path=None):
         # Concatenate private key and certificate together into one file.