X-Git-Url: https://piware.de/gitweb/?p=bin.git;a=blobdiff_plain;f=build-debian-toolbox;h=813e8d37d9e0aca033871e40e27f0a8140a5419f;hp=1bb7781c33e0b6b4777182524f216d91a92ac4ec;hb=9d5c15961776e288a1838c6ca2289eb96babee17;hpb=41bded14baa18bf93500085503785cef1ba791e9 diff --git a/build-debian-toolbox b/build-debian-toolbox index 1bb7781..813e8d3 100755 --- a/build-debian-toolbox +++ b/build-debian-toolbox @@ -5,31 +5,41 @@ RELEASE=${1:-sid} DISTRO=${2:-debian} toolbox rm -f $RELEASE || true +podman pull docker.io/$DISTRO:$RELEASE toolbox -y create -c $RELEASE --image docker.io/$DISTRO:$RELEASE # can't do that with toolbox run yet, as we need to install sudo first podman start $RELEASE podman exec -it $RELEASE sh -exc ' -# https://bugzilla.redhat.com/show_bug.cgi?id=1785244 -if [ ! -e /etc/resolv.conf ]; then - ln -sfn /run/host/monitor/resolv.conf /etc/resolv.conf -fi - # go-faster apt/dpkg echo force-unsafe-io > /etc/dpkg/dpkg.cfg.d/unsafe-io +# location based redirector gets it wrong with company VPN; also add deb-src +sed -i "s/deb.debian.org/ftp.de.debian.org/; /^deb\b/ { p; s/^deb/deb-src/ }" /etc/apt/sources.list + apt-get update apt-get install -y libnss-myhostname sudo eatmydata libcap2-bin + +# allow sudo with empty password +sed -i "s/nullok_secure/nullok/" /etc/pam.d/common-auth ' toolbox run --container $RELEASE sh -exc ' # otherwise installing systemd fails sudo umount /var/log/journal +# useful hostname +. /etc/os-release +echo "${ID}-${VERSION_ID:-sid}" | sudo tee /etc/hostname +sudo hostname -F /etc/hostname + sudo eatmydata apt-get -y dist-upgrade # development tools -sudo eatmydata apt-get install -y --no-install-recommends git-buildpackage libwww-perl less vim lintian debhelper manpages-dev git dput pristine-tar bash-completion python-keyrings.alt wget gnupg ubuntu-dev-tools python3-debian +sudo eatmydata apt-get install -y --no-install-recommends build-essential git-buildpackage libwww-perl less vim lintian debhelper manpages-dev git dput pristine-tar bash-completion wget gnupg ubuntu-dev-tools python3-debian fakeroot libdistro-info-perl openssh-client + +# autopkgtest +sudo eatmydata apt-get install -y --no-install-recommends autopkgtest qemu-system-x86 qemu-utils genisoimage ' toolbox enter --container $RELEASE