Compare commits
No commits in common. "b54564a84dd6e9359d39b5ffa735139064d4fb99" and "3e233e10dfe414e43b31d328eecb0c776afc2ec3" have entirely different histories.
b54564a84d
...
3e233e10df
4 changed files with 2 additions and 9 deletions
|
@ -1,9 +1,3 @@
|
|||
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)
|
||||
------------------
|
||||
|
||||
|
|
|
@ -165,7 +165,6 @@ Contributors
|
|||
- Konstantin Demin
|
||||
- David Kalnischkies
|
||||
- Emilio Pozuelo Monfort
|
||||
- Francesco Poli
|
||||
- Jakub Wilk
|
||||
- Joe Groocock
|
||||
- Nicolas Vigier
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
use strict;
|
||||
use warnings;
|
||||
|
||||
our $VERSION = '1.4.2';
|
||||
our $VERSION = '1.4.1';
|
||||
|
||||
use English;
|
||||
use Getopt::Long;
|
||||
|
|
|
@ -357,7 +357,7 @@ echo "mmdebstrap $*"
|
|||
mmdebstrap "$@" || die "mmdebstrap failed"
|
||||
|
||||
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"
|
||||
|
||||
|
|
Loading…
Reference in a new issue