2022-05-10 10:50:10 +00:00
|
|
|
#!/usr/bin/env bash
|
2022-05-10 20:50:49 +00:00
|
|
|
set -e
|
2022-05-10 16:53:00 +00:00
|
|
|
if [ -d "$1" ]; then
|
|
|
|
rm -rf "$1"
|
2022-05-10 10:50:10 +00:00
|
|
|
fi
|
2022-05-10 16:53:00 +00:00
|
|
|
mkdir "$1"
|
|
|
|
debootstrap --arch="$OPUS_ARCH" "$OPUS_DIST" "$1" "$OPUS_URL"
|
|
|
|
fchroot "$1" apt -y autoclean
|
|
|
|
find "$1/var/log" -type f -delete
|