mirror of
https://github.com/certbot/certbot.git
synced 2026-06-06 23:32:06 -04:00
Explicit keyname
This commit is contained in:
parent
28bfcf77c7
commit
d867193d77
1 changed files with 2 additions and 1 deletions
|
|
@ -95,7 +95,8 @@ cl_args = parser.parse_args()
|
|||
#-------------------------------------------------------------------------------
|
||||
# assumes naming: <key_filename> = <keyname>.pem
|
||||
KEYFILE = cl_args.key_file
|
||||
KEYNAME = os.path.split(cl_args.key_file)[1].split('.pem')[0]
|
||||
#KEYNAME = os.path.split(cl_args.key_file)[1].split('.pem')[0]
|
||||
KEYNAME = 'travis-test-farm'
|
||||
PROFILE = None if cl_args.aws_profile == 'SET_BY_ENV' else cl_args.aws_profile
|
||||
|
||||
# Globals
|
||||
|
|
|
|||
Loading…
Reference in a new issue