blob: dc4404c5d9a5025c2eac8f1e69745c970e23131f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/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] <section>" >&2
exit 1
fi
section="$1"
update_distro_hdlist "cauldron" "$section" "updates_testing"
update_distro_hdlist "cauldron" "$section" "release"
update_common_MD5SUM "cauldron"
mirror_repository "cauldron"
|