mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-15 07:22:29 +03:00
Extract repository certificate automatically
This commit is contained in:
parent
6284480788
commit
d4e9cee168
2 changed files with 15 additions and 8 deletions
|
@ -18,14 +18,9 @@ binaries built by the original application developers.
|
|||
"""
|
||||
|
||||
#The key (from the keystore defined below) to be used for signing the
|
||||
#repository itself. Can be none for an unsigned repository.
|
||||
#repository itself. Can be None for an unsigned repository.
|
||||
repo_keyalias = None
|
||||
|
||||
#If you're building a signed repository, you need the public key here. You
|
||||
#can get the public key in the correct format by using 'getsig -f x.jar" where
|
||||
#x.jar is any jar you have signed with it.
|
||||
repo_pubkey = 'not set'
|
||||
|
||||
#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"
|
||||
|
@ -33,7 +28,8 @@ keystore = "/home/me/somewhere/my.keystore"
|
|||
#The password for the keystore.
|
||||
keystorepass = "foo"
|
||||
|
||||
#The password for keys - the same is used for each auto-generated key.
|
||||
#The password for keys - the same is used for each auto-generated key
|
||||
#as well as for the repository key.
|
||||
keypass = "foo2"
|
||||
|
||||
#The distinguished name used for all keys.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue