]> git.proxmox.com Git - pve-common.git/commitdiff
ACME: comment fixup some POST to GET-as-POST
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Wed, 15 Jan 2020 13:28:51 +0000 (14:28 +0100)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Wed, 15 Jan 2020 13:28:51 +0000 (14:28 +0100)
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
src/PVE/ACME.pm

index 3a3559f1740a2acaa1eb463d47d89c286f1cb116..114eb41ca8ef00de4e0389887761b3557c8a4438 100644 (file)
@@ -396,7 +396,7 @@ sub finalize_order {
 }
 
 # Get order status
-# POST to order URL
+# GET-as-POST to order URL
 # Expects a '200 OK' reply
 # returns order object
 sub get_order {
@@ -408,7 +408,7 @@ sub get_order {
 }
 
 # Gets authorization object
-# Post to authorization URL
+# GET-as-POST to authorization URL
 # Expects a '200 OK' reply
 # returns authorization object, including challenges array
 sub get_authorization {
@@ -437,7 +437,7 @@ sub deactivate_authorization {
 }
 
 # Get certificate
-# POST to order's certificate URL
+# GET-as-POST to order's certificate URL
 # Expects a '200 OK' reply
 # returns certificate chain in PEM format
 sub get_certificate {