24 lines
451 B
Bash
Executable File
24 lines
451 B
Bash
Executable File
#!/bin/bash
|
|
|
|
unset PORTAGE
|
|
unset PORTAGE_TMPDIR
|
|
|
|
set -e
|
|
|
|
if [ "${#}" != "3" ]; then
|
|
echo "Invalid arguments." >&2
|
|
exit 1
|
|
fi
|
|
|
|
CHROOT_PATH="${1}"
|
|
ARCH_NAME="${2}"
|
|
CHROOT_PREFIX="${3}"
|
|
|
|
(
|
|
${CHROOT_PREFIX} chroot "${CHROOT_PATH}" \
|
|
/sabayon/bin/antimatter-digest
|
|
) | mail -a "MIME-Version: 1.0" \
|
|
-a "Content-Type: text/html" \
|
|
-s "AntiMatter tracker of $(date +%Y-%m-%d) for ${ARCH_NAME}" \
|
|
entropy-team@lists.sabayon.org
|