mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-04 22:40:29 +03:00
set the default keystore to the same as the default in fdroid init
This should keep things simple and consistent.
This commit is contained in:
parent
a31f4571c2
commit
7bb490221a
2 changed files with 3 additions and 1 deletions
|
|
@ -60,7 +60,7 @@ repo_keyalias = None
|
||||||
|
|
||||||
#The keystore to use for release keys when building. This needs to be
|
#The keystore to use for release keys when building. This needs to be
|
||||||
#somewhere safe and secure, and backed up!
|
#somewhere safe and secure, and backed up!
|
||||||
keystore = "/home/me/somewhere/my.keystore"
|
#keystore = "/home/me/.local/share/fdroidserver/keystore.jks"
|
||||||
|
|
||||||
# The password for the keystore (at least 6 characters). If this password is
|
# The password for the keystore (at least 6 characters). If this password is
|
||||||
# different than the keypass below, it can be OK to store the password in this
|
# different than the keypass below, it can be OK to store the password in this
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,8 @@ def read_config(opts, config_file='config.py'):
|
||||||
'stats_to_carbon': False,
|
'stats_to_carbon': False,
|
||||||
'repo_maxage': 0,
|
'repo_maxage': 0,
|
||||||
'build_server_always': False,
|
'build_server_always': False,
|
||||||
|
'keystore': os.path.join(os.getenv('HOME'),
|
||||||
|
'.local', 'share', 'fdroidserver', 'keystore.jks'),
|
||||||
'char_limits': {
|
'char_limits': {
|
||||||
'Summary' : 50,
|
'Summary' : 50,
|
||||||
'Description' : 1500
|
'Description' : 1500
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue