1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-10-03 17:50:11 +02: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:
Hans-Christoph Steiner 2014-03-31 21:42:46 -04:00
parent a31f4571c2
commit 7bb490221a
2 changed files with 3 additions and 1 deletions

View File

@ -60,7 +60,7 @@ repo_keyalias = None
#The keystore to use for release keys when building. This needs to be
#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
# different than the keypass below, it can be OK to store the password in this

View File

@ -66,6 +66,8 @@ def read_config(opts, config_file='config.py'):
'stats_to_carbon': False,
'repo_maxage': 0,
'build_server_always': False,
'keystore': os.path.join(os.getenv('HOME'),
'.local', 'share', 'fdroidserver', 'keystore.jks'),
'char_limits': {
'Summary' : 50,
'Description' : 1500