aboutsummaryrefslogtreecommitdiff
path: root/scripts/README
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/README')
-rw-r--r--scripts/README6
1 files changed, 6 insertions, 0 deletions
diff --git a/scripts/README b/scripts/README
index 5eec273a..3dc0d0fe 100644
--- a/scripts/README
+++ b/scripts/README
@@ -84,6 +84,12 @@ Current TO DO list:
state := pending | active | deprecated | revoked
timestamp := NULL | <time of next transition>
+ We can check for things with expired timers directly by doing
+ something like:
+
+ SELECT blah FROM ca_detail
+ WHERE timestamp IS NOT NULL and timestamp < UTC_TIMESTAMP()
+
At this point I doubt we really need the revoked state. If we do
need the revoked state, the timer becomes the delay until we can get
rid of the ca_detail object entirely, or something like that.