X-Git-Url: https://piware.de/gitweb/?p=bin.git;a=blobdiff_plain;f=build-debian-toolbox;h=250e2f7e2b8ecd3b990f1acf5924de280efaff19;hp=95584390a5975d01593dba10ed0c1858cb741507;hb=ed3619520fbe5cf5cee8f97120e6f8a5cb833bca;hpb=2b6b0bf80b022c560c3cdcae42c9ddb2c140ac01 diff --git a/build-debian-toolbox b/build-debian-toolbox index 9558439..250e2f7 100755 --- a/build-debian-toolbox +++ b/build-debian-toolbox @@ -10,7 +10,7 @@ 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 +# https://bugzilla.redhat.com/show_bug.cgi?id=1785244, https://github.com/containers/toolbox/pull/380 if [ ! -e /etc/resolv.conf ]; then ln -sfn /run/host/monitor/resolv.conf /etc/resolv.conf fi @@ -29,10 +29,15 @@ toolbox run --container $RELEASE sh -exc ' # otherwise installing systemd fails sudo umount /var/log/journal +# useful hostname +. /etc/os-release +echo "${ID}-${VERSION_ID}" | 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 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 fakeroot libdistro-info-perl ' toolbox enter --container $RELEASE