summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2023-12-06 18:25:27 +0100
committerChristian Pointner <equinox@spreadspace.org>2023-12-06 18:25:27 +0100
commita24d3ca63e408fc4208cfe6572a490bead249bb1 (patch)
treecf19b90a88fc4e01a813752965f50bde3ce141d8
parentupdate some prometheus stuff (diff)
minor fix
-rwxr-xr-xroles/x509/ownca/contrib/gen-ca.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/x509/ownca/contrib/gen-ca.py b/roles/x509/ownca/contrib/gen-ca.py
index f5bc1fe7..8f99da6c 100755
--- a/roles/x509/ownca/contrib/gen-ca.py
+++ b/roles/x509/ownca/contrib/gen-ca.py
@@ -8,7 +8,7 @@ import datetime
import argparse
parser = argparse.ArgumentParser("spreadspace ansible CA-generator")
-parser.add_argument("-n", "--varaiable-name", dest='varname', help="ansible variable name to be used", type=str, required=True)
+parser.add_argument("-n", "--variable-name", dest='varname', help="ansible variable name to be used", type=str, required=True)
parser.add_argument("-CN", "--common-name", dest='CN', help="Common Name field of the CA's subject", type=str, required=True)
parser.add_argument("-O", "--organization-name", dest='O', help="Organization Name field of the CA's subject", type=str)
parser.add_argument("-OU", "--organizational-unit", dest='OU', help="Organizational Unit field of the CA's subject", type=str)