-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathinit
More file actions
executable file
·45 lines (38 loc) · 1.68 KB
/
init
File metadata and controls
executable file
·45 lines (38 loc) · 1.68 KB
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
35
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/env bash
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
. "${DIR}/support/libc.sh"
exec 1>"${DIR}/support/listing"
get_current_ubuntu trusty i386 libc6
get_current_ubuntu trusty amd64 libc6
get_current_ubuntu trusty amd64 libc6-i386
#get_current_ubuntu utopic i386 libc6
#get_current_ubuntu utopic amd64 libc6
#get_current_ubuntu utopic amd64 libc6-i386
#get_current_ubuntu vivid i386 libc6
#get_current_ubuntu vivid amd64 libc6
#get_current_ubuntu vivid amd64 libc6-i386
#get_current_ubuntu wily i386 libc6
#get_current_ubuntu wily amd64 libc6
#get_current_ubuntu wily amd64 libc6-i386
get_current_ubuntu xenial i386 libc6
get_current_ubuntu xenial amd64 libc6
get_current_ubuntu xenial amd64 libc6-i386
#get_current_ubuntu yakkety i386 libc6
#get_current_ubuntu yakkety amd64 libc6
#get_current_ubuntu yakkety amd64 libc6-i386
#get_current_ubuntu zesty i386 libc6
#get_current_ubuntu zesty amd64 libc6
#get_current_ubuntu zesty amd64 libc6-i386
get_current_ubuntu artful i386 libc6
get_current_ubuntu artful amd64 libc6
get_current_ubuntu artful amd64 libc6-i386
get_current_ubuntu bionic i386 libc6
get_current_ubuntu bionic amd64 libc6
get_current_ubuntu bionic amd64 libc6-i386
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/
# Dedup the listing
awk '!a[$0]++' "${DIR}/support/listing" > "${DIR}/support/list_dedup" &&
mv "${DIR}/support/list_dedup" "${DIR}/support/listing"