blob: 66f3e7eb2681e042d7fb61a0c459a5414b8d6fd4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/bin/sh
set -e
. /usr/share/mgatools/functions
if [ "$1" = "--dry-run" ]; then
dryrun=echo
shift
fi
if [ $# != 2 ]; then
echo "Usage: $0 [--dry-run] <release> <section>" >&2
exit 1
fi
release="$1"
section="$2"
update_distro_hdlist "$release" "$section" "updates_testing"
update_distro_hdlist "$release" "$section" "updates"
update_common_MD5SUM "$release"
mirror_repository "$release"
|