diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2010-12-05 11:30:06 +0100 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2010-12-05 11:30:06 +0100 |
commit | 13a7f5f3e362a8c699f7fd3a08ff8d3d9402cc53 (patch) | |
tree | 9b0eea94a1b06537e635cbb0254e55a3e5b99abb /testing/hosts | |
parent | 2da636fd9bb76a0fed94ee291315b26c82481918 (diff) | |
download | strongswan-13a7f5f3e362a8c699f7fd3a08ff8d3d9402cc53.tar.bz2 strongswan-13a7f5f3e362a8c699f7fd3a08ff8d3d9402cc53.tar.xz |
added certificate_authorities and certificate_distribution_points tables
Diffstat (limited to 'testing/hosts')
-rw-r--r-- | testing/hosts/default/etc/ipsec.d/tables.sql | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/testing/hosts/default/etc/ipsec.d/tables.sql b/testing/hosts/default/etc/ipsec.d/tables.sql index 9d045e0c1..2917fc3fc 100644 --- a/testing/hosts/default/etc/ipsec.d/tables.sql +++ b/testing/hosts/default/etc/ipsec.d/tables.sql @@ -161,6 +161,20 @@ CREATE TABLE shared_secret_identity ( PRIMARY KEY (shared_secret, identity) ); +DROP TABLE IF EXISTS certificate_authorities; +CREATE TABLE certificate_authorities ( + id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, + certificate INTEGER NOT NULL +); + +DROP TABLE IF EXISTS certificate_distribution_points; +CREATE TABLE certificate_distribution_points ( + id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, + ca INTEGER NOT NULL, + type INTEGER NOT NULL, + uri TEXT NOT NULL +); + DROP TABLE IF EXISTS pools; CREATE TABLE pools ( id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, |