Compare commits

...

3 commits

4 changed files with 9 additions and 2 deletions

View file

@ -1,3 +1,9 @@
1.4.2 (2024-01-29)
------------------
- allow for start-stop-daemon to be in either /sbin or /usr/sbin
- mmdebstrap-autopkgtest-build-qemu: fix octal mode computation and hostname
1.4.1 (2024-01-09) 1.4.1 (2024-01-09)
------------------ ------------------

View file

@ -165,6 +165,7 @@ Contributors
- Konstantin Demin - Konstantin Demin
- David Kalnischkies - David Kalnischkies
- Emilio Pozuelo Monfort - Emilio Pozuelo Monfort
- Francesco Poli
- Jakub Wilk - Jakub Wilk
- Joe Groocock - Joe Groocock
- Nicolas Vigier - Nicolas Vigier

View file

@ -23,7 +23,7 @@
use strict; use strict;
use warnings; use warnings;
our $VERSION = '1.4.1'; our $VERSION = '1.4.2';
use English; use English;
use Getopt::Long; use Getopt::Long;

View file

@ -357,7 +357,7 @@ echo "mmdebstrap $*"
mmdebstrap "$@" || die "mmdebstrap failed" mmdebstrap "$@" || die "mmdebstrap failed"
unshare -U -r --map-groups=auto chown 0:0 "$IMAGE" unshare -U -r --map-groups=auto chown 0:0 "$IMAGE"
chmod "$(printf %o "$(( 0666 - 0$(umask) ))")" "$IMAGE" chmod "$(printf %o "$(( 0666 & ~0$(umask) ))")" "$IMAGE"
echo "root=LABEL=autopkgtestvm rw console=ttyS0" > "$WORKDIR/cmdline" echo "root=LABEL=autopkgtestvm rw console=ttyS0" > "$WORKDIR/cmdline"