You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jenkins-debian-glue/scripts/remove-reprepro-codename

44 lines
1.1 KiB

#!/bin/bash
if [ -z ${JENKINS_DEBIAN_GLUE_QUIET:-} ]; then
set -x
fi
set -e
if [ -r /etc/jenkins/debian_glue ] ; then
. /etc/jenkins/debian_glue
fi
if [ -z "${REPOSITORY:-}" ] ; then
REPOSITORY='/srv/repository'
fi
if [ -z "${REPREPRO_OPTS:-}" ] ; then
REPREPRO_OPTS='--waitforlock 1000 -v'
fi
if [ "$#" -lt 1 ] ; then
echo "Usage: $0 <codename>" >&2
exit 1
fi
codename="$1"
if ! [ -r "${REPOSITORY}/conf/distributions" ] ; then
echo "*** Error: could not read ${REPOSITORY}/conf/distributions" >&2
exit 1
fi
if ! grep -q "^\(Codename\|Suite\): ${codename}$" "${REPOSITORY}/conf/distributions" ; then
echo "*** Codename $codename does not exist in ${REPOSITORY}/conf/distributions - nothing to do."
exit 0
fi
echo "*** Removing codename $codename from reprepro configuration in $REPOSITORY ***"
perl -i -00 -pe "if (!\$done && m|$codename|) { \$_=q(); \$done++}" "${REPOSITORY}/conf/distributions"
echo "*** Removing vanished data from reprepro ***"
reprepro $REPREPRO_OPTS -b "$REPOSITORY" --delete clearvanished
# vim:foldmethod=marker ts=2 ft=sh ai expandtab sw=2