blob: 70cccb93cefd5a0e7f70f5db392fb52f0a74b01e (
plain)
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
#!/bin/sh
# do some basic sanity checks
. "${0%/*}/../conf/default.conf"
tmp_dir="$(mktemp -d)"
trap 'rm -rf --one-file-system "${tmp_dir}"' EXIT
if [ $# -eq 0 ]; then
set -- mirror
fi
while [ $# -gt 0 ]; do
case "$1" in
mirror)
>&2 echo 'sanity-check: checking mirror ...'
repos='community-staging community-testing community core extra gnome-unstable kde-unstable staging testing'
errors="$(
(
printf '%s\n' ${repos}
ls_master_mirror 'i686'
) | \
sort | \
uniq -u
)"
if [ -n "${errors}" ]; then
echo "The following repos are missing or obsolete on the mirror:"
echo "${errors}"
exit 1
fi
for repo in ${repos}; do
>&2 printf ' checking "%s" ...\n' "${repo}"
packages="$(
ls_master_mirror "i686/${repo}" | \
grep '\.pkg\.tar\.xz\(\.sig\)\?$'
)" || true
errors="$(
echo "${packages}" | \
sed 's|\.sig$||' | \
uniq -c | \
grep -v '^\s*2\s' | \
awk '{print $2}'
)"
if [ -n "${errors}" ]; then
echo "The following packages in ${repo} are missing a signature or vice versa:"
echo "${errors}"
exit 1
fi
${master_mirror_command} \
"${master_mirror_directory}/i686/${repo}/${repo}.db.tar.gz" \
"${master_mirror_directory}/i686/${repo}/${repo}.files.tar.gz" \
"${tmp_dir}/"
errors="$(
(
tar -tzf "${tmp_dir}/${repo}.db.tar.gz" | \
grep '/$' | \
sed 's|/$||'
echo "${packages}" | \
sed 's|-[^-]\+$||' | \
sort -u
) | \
sort | \
uniq -u
)"
if [ -n "${errors}" ]; then
echo "The following packages in ${repo} are missing from the database or vice versa:"
echo "${errors}"
exit 1
fi
errors="$(
(
tar -tzf "${tmp_dir}/${repo}.files.tar.gz" | \
grep '/$' | \
sed 's|/$||'
echo "${packages}" | \
sed 's|-[^-]\+$||' | \
sort -u
) | \
sort | \
uniq -u
)"
if [ -n "${errors}" ]; then
echo "The following packages in ${repo} are missing from the file-database or vice versa:"
echo "${errors}"
exit 1
fi
rm -rf --one-file-system "${tmp_dir}/"*
>&2 printf ' ... "%s" is ok.\n' "${repo}"
done
>&2 echo '... passed.'
;;
*)
>&2 printf 'sanity-check: unknown check "%s".' "$1"
exit 2
;;
esac
shift
done
|