mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-13 02:30:11 +01:00
rename local variable to stop overwriting global options
This fixes a bug where if smartcardoptions is set as a str in config.yml
will overwrite all command line options.
a4d069862
fdroidserver!1106
This commit is contained in:
parent
1eaba25021
commit
92a3f4b191
@ -477,8 +477,8 @@ def read_config(opts=None):
|
||||
# smartcardoptions must be a list since its command line args for Popen
|
||||
smartcardoptions = config.get('smartcardoptions')
|
||||
if isinstance(smartcardoptions, str):
|
||||
options = re.sub(r'\s+', r' ', config['smartcardoptions']).split(' ')
|
||||
config['smartcardoptions'] = [i.strip() for i in options if i]
|
||||
sco_items = re.sub(r'\s+', r' ', config['smartcardoptions']).split(' ')
|
||||
config['smartcardoptions'] = [i.strip() for i in sco_items if i]
|
||||
elif not smartcardoptions and 'keystore' in config and config['keystore'] == 'NONE':
|
||||
# keystore='NONE' means use smartcard, these are required defaults
|
||||
config['smartcardoptions'] = ['-storetype', 'PKCS11', '-providerName',
|
||||
|
Loading…
Reference in New Issue
Block a user