From a87532a54cad69801a8f1360da2f91f9a5e5686b Mon Sep 17 00:00:00 2001 From: Henrik Tunedal Date: Wed, 6 Apr 2011 20:55:01 +0200 Subject: [PATCH] Use longer example passwords A minimum password length of 6 characters is enforced by keytool, so the example passwords wouldn't work. --- config.sample.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config.sample.py b/config.sample.py index d91d3f5e..38917762 100644 --- a/config.sample.py +++ b/config.sample.py @@ -25,12 +25,12 @@ repo_keyalias = None #somewhere safe and secure, and backed up! keystore = "/home/me/somewhere/my.keystore" -#The password for the keystore. -keystorepass = "foo" +#The password for the keystore (at least 6 characters). +keystorepass = "password1" #The password for keys - the same is used for each auto-generated key #as well as for the repository key. -keypass = "foo2" +keypass = "password2" #The distinguished name used for all keys. keydname = "CN=Birdman, OU=Cell, O=Alcatraz, L=Alcatraz, S=California, C=US"