#!/usr/bin/bash ### # # Options Section # ### set -e set -o pipefail ### # # Variable Section # ### OUTDIR=$(/usr/bin/grep 'outdir' '/etc/reprepro/options' | /usr/bin/sed --expression='s/outdir //') MORGUE="${OUTDIR}/morgue" ### # # Runtime Environment # ### if [[ ! -d "${MORGUE}" ]]; then /usr/bin/install --directory "${MORGUE}" exit 0 fi /usr/bin/rm --force --recursive "${MORGUE}"/* exit 0