diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2012-08-16 09:14:46 +0200 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2012-08-16 09:14:46 +0200 |
commit | 81fbbc5381a3f17ab5ded5e58a3a3ebb1a81bdaa (patch) | |
tree | 0ba27f71730921ab72a419bb004e3d61b6907dda /src/libpts | |
parent | 52c0f181d4753966bb5d9f9b36dbaf9f36e1f548 (diff) | |
download | strongswan-81fbbc5381a3f17ab5ded5e58a3a3ebb1a81bdaa.tar.bz2 strongswan-81fbbc5381a3f17ab5ded5e58a3a3ebb1a81bdaa.tar.xz |
upgraded to Ubuntu 12.04.1 LTS
Diffstat (limited to 'src/libpts')
-rwxr-xr-x | src/libpts/plugins/imv_attestation/build-database.sh | 2 | ||||
-rw-r--r-- | src/libpts/plugins/imv_attestation/data.sql | 36 |
2 files changed, 37 insertions, 1 deletions
diff --git a/src/libpts/plugins/imv_attestation/build-database.sh b/src/libpts/plugins/imv_attestation/build-database.sh index 4432382b9..a89258e1d 100755 --- a/src/libpts/plugins/imv_attestation/build-database.sh +++ b/src/libpts/plugins/imv_attestation/build-database.sh @@ -1,6 +1,6 @@ #!/bin/sh -p="Ubuntu 12.04 LTS i686" +p="Ubuntu 12.04.1 LTS i686" ipsec attest --add --product "$p" --sha1-ima --dir /sbin ipsec attest --add --product "$p" --sha1-ima --dir /usr/sbin diff --git a/src/libpts/plugins/imv_attestation/data.sql b/src/libpts/plugins/imv_attestation/data.sql index adeae3e27..b1646b724 100644 --- a/src/libpts/plugins/imv_attestation/data.sql +++ b/src/libpts/plugins/imv_attestation/data.sql @@ -48,6 +48,12 @@ INSERT INTO products ( 'Ubuntu 12.04 LTS i686' ); +INSERT INTO products ( + name +) VALUES ( + 'Ubuntu 12.04.1 LTS i686' +); + /* Files */ INSERT INTO files ( /* 1 */ @@ -437,6 +443,18 @@ INSERT INTO product_file ( 8, 24, 1 ); +INSERT INTO product_file ( + product, file, measurement +) VALUES ( + 9, 1, 1 +); + +INSERT INTO product_file ( + product, file, metadata +) VALUES ( + 9, 22, 1 +); + /* File Hashes */ INSERT INTO file_hashes ( @@ -496,6 +514,24 @@ INSERT INTO file_hashes ( INSERT INTO file_hashes ( file, product, algo, hash ) VALUES ( + 1, 9, 32768, X'9c3ed3179990c0ffb3a65b75a09b61faa4aca907' +); + +INSERT INTO file_hashes ( + file, product, algo, hash +) VALUES ( + 1, 9, 16384, X'af474dd532c9f2d85c12368334eda3609a7c6287e08940f078547ab0f2871c94' +); + +INSERT INTO file_hashes ( + file, product, algo, hash +) VALUES ( + 1, 9, 8192, X'a23fa7034dabdce2d10f2893d52b21d14fe24c6ae4c8570fb6c7190228046e4c064c4d29d736cd84ca42a3d9abf9bfde' +); + +INSERT INTO file_hashes ( + file, product, algo, hash +) VALUES ( 2, 2, 32768, X'2a4047437e6fb346e2d854fc415e16b80e75bf6b' ); |