X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=scripts%2Fdebian%2Fbyhand-task;h=cd40167181dbe27fda86529a463172a4a8587985;hb=77c62d8ce099969468b370ef90806127f31cd925;hp=8caf9422eafbeb2fa2e37ffde04d509e1c01ccf8;hpb=16f731a893f0ba036a995c25b8b5f3490394070e;p=dak.git diff --git a/scripts/debian/byhand-task b/scripts/debian/byhand-task index 8caf9422..cd401671 100755 --- a/scripts/debian/byhand-task +++ b/scripts/debian/byhand-task @@ -1,10 +1,16 @@ -#!/bin/sh -ue +#!/bin/sh + +set -u +set -e if [ $# -lt 4 ]; then echo "Usage: $0 filename version arch changes_file" exit 1 fi +export SCRIPTVARS=/srv/ftp-master.debian.org/dak/config/debian/vars +. $SCRIPTVARS + INPUT="$1" # Tarball to read, compressed with gzip VERSION="$2" ARCH="$3" @@ -35,7 +41,7 @@ esac CHECKRE='^[a-z0-9A-Z.+-]+[[:space:]]+Task[[:space:]]+[a-z0-9:. ,{}+-]+$' # This must end with / -TARGET=/srv/ftp.debian.org/scripts/external-overrides/ +TARGET=/srv/ftp-master.debian.org/scripts/external-overrides/ # Read the main directory from the tarball DIR="`tar ztf \"$INPUT\" | tac | tail -n 1`" @@ -58,7 +64,8 @@ mv "$OUTMAIN" "$TARGET"task chmod 644 "$TARGET"task -(cd $TARGET && ./mk-extra-overrides.sh) +dak external-overrides import unstable main Task <"$TARGET"task +dak external-overrides copy unstable testing trap - EXIT