matrixsynapse: Remove unused letsencrypt action

Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
This commit is contained in:
Sunil Mohan Adapa 2019-10-11 15:50:17 -07:00 committed by James Valleroy
parent b0ba185020
commit 42b923c04e
No known key found for this signature in database
GPG Key ID: 77C0C75E7B650808

View File

@ -42,13 +42,6 @@ def parse_arguments():
'--domain-name',
help='The domain name that will be used by Matrix Synapse')
help_le = "Add/drop Let's Encrypt certificate if configured domain matches"
subparser = subparsers.add_parser('letsencrypt', help=help_le)
subparser.add_argument('command', choices=('add', 'drop', 'get-status'),
help='Whether to add or drop the certificate')
subparser.add_argument('--domain',
help='Domain name to renew certificates for')
subparsers.required = True
return parser.parse_args()