diff options
author | Rob Austein <sra@hactrn.net> | 2012-10-01 10:43:00 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2012-10-01 10:43:00 +0000 |
commit | e0b5f33f8a3b1f4ae23cb6448c450d84aeac1264 (patch) | |
tree | a8938672390fa7a2a8a7569652f7798f6ff595f3 | |
parent | 47e8fee91bef404c1528bc6e4c580f08f4d73c69 (diff) |
Use very long BPKI expiration times, so that we can
re-run canned experiments without worrying about BPKI expirations.
Probably ought to tie all of this back to YAML valid_until settings,
but this will do for the moment.
svn path=/branches/tk274/; revision=4747
-rw-r--r-- | rpkid/tests/yamlconf.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/rpkid/tests/yamlconf.py b/rpkid/tests/yamlconf.py index e2016b12..2341ac3f 100644 --- a/rpkid/tests/yamlconf.py +++ b/rpkid/tests/yamlconf.py @@ -723,6 +723,9 @@ def body(): import rpki.irdb + rpki.irdb.models.ca_certificate_lifetime = rpki.sundial.timedelta(days = 3652 * 2) + rpki.irdb.models.ee_certificate_lifetime = rpki.sundial.timedelta(days = 3652) + ts() for d in db: |