X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=scripts%2Fdebian%2Fbyhand-task;h=6610783c345ecdbd72c6fb9e9be047287b0579e5;hb=daabc309ca2b0869085f760a4fdb268999e050fc;hp=9fca5f952c21d784611cd3a2edf2375336af72e6;hpb=95c5b50e57dd3410ebd4f0f2a390aeb32e0ac7a5;p=dak.git diff --git a/scripts/debian/byhand-task b/scripts/debian/byhand-task index 9fca5f95..6610783c 100755 --- a/scripts/debian/byhand-task +++ b/scripts/debian/byhand-task @@ -1,11 +1,14 @@ -#!/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.debian.org/dak/config/debian/vars +export SCRIPTVARS=/srv/ftp-master.debian.org/dak/config/debian/vars . $SCRIPTVARS INPUT="$1" # Tarball to read, compressed with gzip @@ -38,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`" @@ -62,6 +65,7 @@ mv "$OUTMAIN" "$TARGET"task chmod 644 "$TARGET"task (cd $TARGET && $scriptsdir/mk-extra-overrides.sh) +dak external-overrides import Task <"$TARGET"task trap - EXIT