docker-debian-repository/scripts/reprepro-import.sh

66 lines
1.3 KiB
Bash
Raw Normal View History

2014-08-12 21:06:52 +00:00
#!/bin/sh
2014-08-13 11:28:11 +00:00
BASEDIR=/var/lib/reprepro
INCOMING=/docker/incoming
OUTDIR=/repository/debian
2014-08-12 21:06:52 +00:00
#
# Make sure we're in the apt/ directory
#
cd $INCOMING
cd ..
#set -x
2016-07-20 10:39:19 +00:00
reprepro -V --basedir $BASEDIR --outdir $OUTDIR createsymlinks stable
reprepro -V --basedir $BASEDIR --outdir $OUTDIR createsymlinks jessie
2014-08-12 21:06:52 +00:00
reprepro -V --basedir $BASEDIR --outdir $OUTDIR createsymlinks unstable
reprepro -V --basedir $BASEDIR --outdir $OUTDIR createsymlinks sid
#
# See if we found any new packages
#
found=0
for i in $INCOMING/*.changes; do
if [ -e $i ]; then
found=`expr $found + 1`
fi
done
#
# If we found none then exit
#
if [ "$found" -lt 1 ]; then
exit
fi
#
# Now import each new package that we *did* find
#
for i in $INCOMING/*.changes; do
# Import package to 'sarge' distribution.
reprepro -V --basedir $BASEDIR \
--keepunreferencedfiles \
--outdir $OUTDIR include unstable $i
# Delete the referenced files
sed '1,/Files:/d' $i | sed '/BEGIN PGP SIGNATURE/,$d' \
| while read MD SIZE SECTION PRIORITY NAME; do
if [ -z "$NAME" ]; then
continue
fi
#
# Delete the referenced file
#
if [ -f "$INCOMING/$NAME" ]; then
rm "$INCOMING/$NAME" || exit 1
fi
done
# Finally delete the .changes file itself.
rm $i
done
2014-08-13 11:28:11 +00:00
chown -R www-data:www-data $OUTDIR