]> piware.de Git - bin.git/blob - build-debian-toolbox
build-debian-toolbox: Allow sudo with empty password
[bin.git] / build-debian-toolbox
1 #!/bin/sh
2 set -eux
3
4 RELEASE=${1:-sid}
5 DISTRO=${2:-debian}
6
7 toolbox rm -f $RELEASE || true
8 toolbox -y create -c $RELEASE --image docker.io/$DISTRO:$RELEASE
9
10 # can't do that with toolbox run yet, as we need to install sudo first
11 podman start $RELEASE
12 podman exec -it $RELEASE sh -exc '
13 # https://bugzilla.redhat.com/show_bug.cgi?id=1785244
14 if [ ! -e /etc/resolv.conf ]; then
15     ln -sfn /run/host/monitor/resolv.conf /etc/resolv.conf
16 fi
17
18 # go-faster apt/dpkg
19 echo force-unsafe-io > /etc/dpkg/dpkg.cfg.d/unsafe-io
20
21 apt-get update
22 apt-get install -y libnss-myhostname sudo eatmydata libcap2-bin
23
24 # allow sudo with empty password
25 sed -i "s/nullok_secure/nullok/" /etc/pam.d/common-auth
26 '
27
28 toolbox run --container $RELEASE sh -exc '
29 # otherwise installing systemd fails
30 sudo umount /var/log/journal
31
32 sudo eatmydata apt-get -y dist-upgrade
33
34 # development tools
35 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
36 '
37
38 toolbox enter --container $RELEASE