Support Ubuntu 13.10 measurements

This commit is contained in:
Andreas Steffen
2013-10-21 21:33:30 +02:00
parent 27bf5c06dc
commit 50d7a55c96
2 changed files with 46 additions and 1 deletions
+24
View File
@@ -132,6 +132,18 @@ INSERT INTO products ( /* 22 */
'Android 4.2.1'
);
INSERT INTO products ( /* 23 */
name
) VALUES (
'Ubuntu 13.10 i686'
);
INSERT INTO products ( /* 24 */
name
) VALUES (
'Ubuntu 13.10 x86_64'
);
/* Directories */
INSERT INTO directories ( /* 1 */
@@ -612,6 +624,12 @@ INSERT INTO groups_product_defaults (
6, 19
);
INSERT INTO groups_product_defaults (
group_id, product_id
) VALUES (
6, 23
);
INSERT INTO groups_product_defaults (
group_id, product_id
) VALUES (
@@ -654,6 +672,12 @@ INSERT INTO groups_product_defaults (
7, 20
);
INSERT INTO groups_product_defaults (
group_id, product_id
) VALUES (
7, 24
);
INSERT INTO groups_product_defaults (
group_id, product_id
) VALUES (
+22 -1
View File
@@ -3,7 +3,7 @@
DIR="/etc/pts"
DATE=`date +%Y%m%d-%H%M`
UBUNTU="http://security.ubuntu.com/ubuntu/dists"
UBUNTU_VERSIONS="raring quantal precise lucid"
UBUNTU_VERSIONS="saucy raring quantal precise lucid"
UBUNTU_DIRS="main multiverse restricted universe"
UBUNTU_ARCH="binary-amd64 binary-i386"
DEBIAN="http://security.debian.org/dists"
@@ -43,6 +43,27 @@ do
done
done
for f in saucy-security/binary-amd64/*
do
$PACMAN --product "Ubuntu 13.10 x86_64" --file $f --security >> $PACMAN_LOG
done
echo
for f in saucy-updates/binary-amd64/*
do
$PACMAN --product "Ubuntu 13.10 x86_64" --file $f >> $PACMAN_LOG
done
echo
for f in saucy-security/binary-i386/*
do
$PACMAN --product "Ubuntu 13.10 i686" --file $f --security >> $PACMAN_LOG
done
echo
for f in saucy-updates/binary-i386/*
do
$PACMAN --product "Ubuntu 13.10 i686" --file $f >> $PACMAN_LOG
done
echo
for f in raring-security/binary-amd64/*
do
$PACMAN --product "Ubuntu 13.04 x86_64" --file $f --security >> $PACMAN_LOG