forked from niklasb/libc-database
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathget
executable file
·34 lines (30 loc) · 898 Bytes
/
get
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/bin/bash
cd "$(dirname "$0")"
. common/libc.sh
ubuntu_versions=(
xenial
bionic
disco
eoan
focal
)
for version in ${ubuntu_versions[@]}; do
get_current_ubuntu $version amd64 libc6
get_current_ubuntu $version amd64 libc6-i386
get_current_ubuntu $version i386 libc6
done
get_all_ubuntu archive-eglibc http://security.ubuntu.com/ubuntu/pool/main/e/eglibc/
get_all_ubuntu archive-glibc http://security.ubuntu.com/ubuntu/pool/main/g/glibc/
get_all_ubuntu archive-old-eglibc http://old-releases.ubuntu.com/ubuntu/pool/main/e/eglibc/
get_all_ubuntu archive-old-glibc http://old-releases.ubuntu.com/ubuntu/pool/main/g/glibc/
debian_versions=(
jessie
stretch
buster
bullseye
)
for version in ${debian_versions[@]}; do
get_current_debian $version i386 libc6
get_current_debian $version amd64 libc6
get_current_debian $version amd64 libc6-i386
done