Compare commits
3 commits
3e233e10df
...
b54564a84d
Author | SHA1 | Date | |
---|---|---|---|
b54564a84d | |||
ba6e9af9a2 | |||
|
8410dc6636 |
4 changed files with 9 additions and 2 deletions
|
@ -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)
|
||||||
------------------
|
------------------
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -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"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue