From: Mark Hymers Date: Mon, 25 Jul 2011 08:42:49 +0000 (+0100) Subject: Allow the release team to do tpu removals X-Git-Url: https://git.decadent.org.uk/gitweb/?a=commitdiff_plain;ds=sidebyside;h=3c34e5d9dfbdd6172674c6a389a80d4595c2c362;p=dak.git Allow the release team to do tpu removals Signed-off-by: Mark Hymers --- diff --git a/scripts/debian/release_team_removals.sh b/scripts/debian/release_team_removals.sh new file mode 100755 index 00000000..3d638480 --- /dev/null +++ b/scripts/debian/release_team_removals.sh @@ -0,0 +1,56 @@ +#!/bin/bash + +# Copyright (C) 2008,2010 Joerg Jaspert +# Copyright (C) 2011 Mark Hymers + +# Permission is hereby granted, free of charge, to any person obtaining +# a copy of this software and associated documentation files (the +# "Software"), to deal in the Software without restriction, including +# without limitation the rights to use, copy, modify, merge, publish, +# distribute, sublicense, and/or sell copies of the Software, and to +# permit persons to whom the Software is furnished to do so, subject to +# the following conditions: +# +# The above copyright notice and this permission notice shall be +# included in all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +set -e +set -u + +# Load up some standard variables +export SCRIPTVARS=/srv/ftp-master.debian.org/dak/config/debian/vars +. $SCRIPTVARS + +SUITE="testing-proposed-updates" +IMPORTDIR="/srv/release.debian.org/sets/tpu-removals" +IMPORTFILE="${IMPORTDIR}/current" + +if [ ! -e "${IMPORTFILE}" ]; then + echo "${IMPORTFILE} not found" + exit 1 +fi + +# Change to a known safe location +cd $masterdir + +echo "Performing cleanup on ${SUITE}" + +cat ${INPUTFILE} | dak control-suite --remove ${SUITE} + +if [ $? -eq 0 ]; then + NOW=$(date "+%Y%m%d%H%M") + mv "${IMPORTFILE}" "${IMPORTDIR}/processed.${NOW}" +fi + +echo "Done" + +exit 0