2017-06-14 13:36:37 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2023-02-05 21:02:07 +01:00
|
|
|
# kas-isar: sudo update-binfmts --enable && [ -f /proc/sys/fs/binfmt_misc/status ]
|
2023-02-05 20:56:06 +01:00
|
|
|
|
2017-07-05 14:03:26 +02:00
|
|
|
if mount | grep -q "on / type aufs"; then
|
|
|
|
cat <<EOF >&2
|
|
|
|
WARNING: Generation of wic images will fail!
|
|
|
|
|
|
|
|
Your docker host setup uses broken aufs as storage driver. Adjust the docker
|
2018-07-17 21:56:11 +02:00
|
|
|
configuration to use a different driver (overlay, overlay2, devicemapper). You
|
|
|
|
may also need to update the host distribution (e.g. Debian Jessie -> Stretch).
|
2017-07-05 14:03:26 +02:00
|
|
|
|
|
|
|
EOF
|
|
|
|
fi
|
|
|
|
|
2023-02-06 17:57:53 +01:00
|
|
|
if [ -z "$USER_ID" ]; then
|
|
|
|
# Not a kas-container call
|
|
|
|
GOSU=""
|
|
|
|
|
|
|
|
# Work around gitlab-runner not aligning checked out repo ownership
|
|
|
|
# with our builder user
|
|
|
|
sudo git config --system safe.directory "*"
|
|
|
|
elif [ "$USER_ID" == 0 ]; then
|
|
|
|
# We shall run everything as root
|
2018-07-17 21:56:12 +02:00
|
|
|
GOSU=""
|
2017-07-19 08:51:22 +02:00
|
|
|
else
|
2023-02-05 21:02:07 +01:00
|
|
|
GROUP_ID=${GROUP_ID:-$(id -g)}
|
2017-07-20 18:13:14 +02:00
|
|
|
|
2023-02-05 21:02:07 +01:00
|
|
|
groupmod -o --gid "$GROUP_ID" builder
|
|
|
|
usermod -o --uid "$USER_ID" --gid "$GROUP_ID" builder >/dev/null
|
|
|
|
chown -R "$USER_ID":"$GROUP_ID" /builder
|
2023-02-05 20:56:06 +01:00
|
|
|
|
2023-02-05 21:02:07 +01:00
|
|
|
GOSU="gosu builder"
|
2018-07-17 21:56:12 +02:00
|
|
|
fi
|
|
|
|
|
2018-07-17 21:56:14 +02:00
|
|
|
if [ "$PWD" = / ]; then
|
2022-01-10 12:39:14 +01:00
|
|
|
cd /builder || exit 1
|
2018-07-17 21:56:14 +02:00
|
|
|
fi
|
|
|
|
|
2018-07-17 21:56:12 +02:00
|
|
|
if [ -n "$1" ]; then
|
2018-07-17 21:56:13 +02:00
|
|
|
case "$1" in
|
2022-12-11 08:30:29 +01:00
|
|
|
build|checkout|dump|for-all-repos|menu|shell|-*)
|
2022-01-10 12:39:14 +01:00
|
|
|
# SC2086: Double quote to prevent globbing and word splitting.
|
|
|
|
# shellcheck disable=2086
|
2018-07-17 21:56:13 +02:00
|
|
|
exec $GOSU kas "$@"
|
|
|
|
;;
|
|
|
|
*)
|
2022-01-10 12:39:14 +01:00
|
|
|
# SC2086: Double quote to prevent globbing and word splitting.
|
|
|
|
# shellcheck disable=2086
|
2018-07-17 21:56:13 +02:00
|
|
|
exec $GOSU "$@"
|
|
|
|
;;
|
|
|
|
esac
|
2018-07-17 21:56:12 +02:00
|
|
|
else
|
2022-01-10 12:39:14 +01:00
|
|
|
# SC2086: Double quote to prevent globbing and word splitting.
|
|
|
|
# shellcheck disable=2086
|
2018-07-17 21:56:12 +02:00
|
|
|
exec $GOSU bash
|
2017-07-19 08:51:22 +02:00
|
|
|
fi
|