From 29a5fca67c79bb7bfc7e7b3002d1be4eee607203 Mon Sep 17 00:00:00 2001 From: Colin Guthrie Date: Mon, 28 Jul 2014 23:23:06 +0100 Subject: Add some utility scripts to update hdlists. These are the same scripts that were present on the live server and have thus proven useful. That said, common code has been factored out and centralised and the syntax has been neatened up. --- mga-hdlists-updates | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100755 mga-hdlists-updates (limited to 'mga-hdlists-updates') diff --git a/mga-hdlists-updates b/mga-hdlists-updates new file mode 100755 index 0000000..66f3e7e --- /dev/null +++ b/mga-hdlists-updates @@ -0,0 +1,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]
" >&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" -- cgit v1.2.1