chiark / gitweb /
Use longer example passwords
authorHenrik Tunedal <tunedal@gmail.com>
Wed, 6 Apr 2011 18:55:01 +0000 (20:55 +0200)
committerHenrik Tunedal <tunedal@gmail.com>
Wed, 6 Apr 2011 21:45:29 +0000 (23:45 +0200)
A minimum password length of 6 characters is enforced by keytool, so
the example passwords wouldn't work.

config.sample.py

index d91d3f5e377fc929185764eeffab6841ea4a41c4..38917762e4923deb9de5b40d723fcc7b02cd5f4a 100644 (file)
@@ -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"