diff options
author | Michael Thomas <aelmalinka@gmail.com> | 2012-04-29 14:40:36 -0400 |
---|---|---|
committer | Ben Noordhuis <info@bnoordhuis.nl> | 2012-05-01 01:08:31 +0200 |
commit | 4e4860579e7852666a761184c69b02e9a8f7af58 (patch) | |
tree | 836292b10bb2e0dba3e24e319130db6ae692f79f /test/fixtures/keys | |
parent | 75c6255d167a885de700c1fe71681514ac979d36 (diff) | |
download | node-new-4e4860579e7852666a761184c69b02e9a8f7af58.tar.gz |
test: rebuild keys without asking for password
Diffstat (limited to 'test/fixtures/keys')
-rw-r--r-- | test/fixtures/keys/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/test/fixtures/keys/Makefile b/test/fixtures/keys/Makefile index 689393f376..0c75a55724 100644 --- a/test/fixtures/keys/Makefile +++ b/test/fixtures/keys/Makefile @@ -120,13 +120,15 @@ ca2-crl.pem: ca2-key.pem ca2-cert.pem ca2.cnf openssl ca -revoke agent4-cert.pem \ -keyfile ca2-key.pem \ -cert ca2-cert.pem \ - -config ca2.cnf + -config ca2.cnf \ + -passin 'pass:password' openssl ca \ -keyfile ca2-key.pem \ -cert ca2-cert.pem \ -config ca2.cnf \ -gencrl \ - -out ca2-crl.pem + -out ca2-crl.pem \ + -passin 'pass:password' clean: rm -f *.pem *.srl ca2-database.txt ca2-serial |