mirror of
https://github.com/certbot/certbot.git
synced 2026-07-28 00:35:50 +02:00
Restore 'type=file' on privkey and csr command line arguments.
This commit is contained in:
@@ -28,10 +28,10 @@ def main():
|
||||
nargs="+")
|
||||
parser.add_argument("-s", "--server", dest="server",
|
||||
help="The ACME CA server address.")
|
||||
parser.add_argument("-p", "--privkey", dest="privkey",
|
||||
parser.add_argument("-p", "--privkey", dest="privkey", type=file,
|
||||
help="Path to the private key file for certificate "
|
||||
"generation.")
|
||||
parser.add_argument("-c", "--csr", dest="csr",
|
||||
parser.add_argument("-c", "--csr", dest="csr", type=file,
|
||||
help="Path to the certificate signing request file "
|
||||
"corresponding to the private key file. The "
|
||||
"private key file argument is required if this "
|
||||
|
||||
Reference in New Issue
Block a user