Compare commits
2 commits
e3eafd0009
...
8b982e82d2
Author | SHA1 | Date | |
---|---|---|---|
8b982e82d2 | |||
84f80673f4 |
4 changed files with 5 additions and 5 deletions
|
@ -433,4 +433,4 @@ Test: skip-output-mknod
|
||||||
Modes: root unshare
|
Modes: root unshare
|
||||||
|
|
||||||
Test: skip-tar-in-mknod
|
Test: skip-tar-in-mknod
|
||||||
Modes: root
|
Modes: unshare
|
||||||
|
|
|
@ -457,7 +457,6 @@ if [ "$HAVE_QEMU" = "yes" ]; then
|
||||||
if [ ! -e ./mmdebstrap ]; then
|
if [ ! -e ./mmdebstrap ]; then
|
||||||
pkgs="$pkgs,mmdebstrap"
|
pkgs="$pkgs,mmdebstrap"
|
||||||
fi
|
fi
|
||||||
pkgs="$pkgs,auditd"
|
|
||||||
arches=$HOSTARCH
|
arches=$HOSTARCH
|
||||||
if [ "$RUN_MA_SAME_TESTS" = "yes" ]; then
|
if [ "$RUN_MA_SAME_TESTS" = "yes" ]; then
|
||||||
case "$HOSTARCH" in
|
case "$HOSTARCH" in
|
||||||
|
|
|
@ -1177,6 +1177,8 @@ sub setup_mounts {
|
||||||
|
|
||||||
eval {
|
eval {
|
||||||
if (any { $_ eq $options->{mode} } ('root', 'unshare')) {
|
if (any { $_ eq $options->{mode} } ('root', 'unshare')) {
|
||||||
|
0 == system('mount', "--make-rprivate", "/")
|
||||||
|
or warning("mount --make-rprivate / failed: $?");
|
||||||
# if more than essential should be installed, make the system look
|
# if more than essential should be installed, make the system look
|
||||||
# more like a real one by creating or bind-mounting the device
|
# more like a real one by creating or bind-mounting the device
|
||||||
# nodes
|
# nodes
|
||||||
|
|
|
@ -3,7 +3,7 @@ set -eu
|
||||||
export LC_ALL=C.UTF-8
|
export LC_ALL=C.UTF-8
|
||||||
export SOURCE_DATE_EPOCH={{ SOURCE_DATE_EPOCH }}
|
export SOURCE_DATE_EPOCH={{ SOURCE_DATE_EPOCH }}
|
||||||
|
|
||||||
#[ {{ MODE }} = "unshare" ]
|
[ {{ MODE }} = "unshare" ]
|
||||||
|
|
||||||
trap "rm -f /tmp/debian-chroot.tar" EXIT INT TERM
|
trap "rm -f /tmp/debian-chroot.tar" EXIT INT TERM
|
||||||
|
|
||||||
|
@ -22,8 +22,7 @@ fi
|
||||||
$prefix {{ CMD }} --mode={{ MODE }} --variant=custom \
|
$prefix {{ CMD }} --mode={{ MODE }} --variant=custom \
|
||||||
--skip=update,setup,cleanup,tar-in/mknod \
|
--skip=update,setup,cleanup,tar-in/mknod \
|
||||||
--setup-hook='tar-in ./cache/mmdebstrap-{{ DIST }}-apt.tar /' \
|
--setup-hook='tar-in ./cache/mmdebstrap-{{ DIST }}-apt.tar /' \
|
||||||
--setup-hook='/sbin/auditctl -w "$1" -p wxa -k mykey' \
|
'' /tmp/debian-chroot.tar
|
||||||
'' /tmp/debian-chroot.tar || /sbin/ausearch --format text -k mykey
|
|
||||||
|
|
||||||
cmp ./cache/mmdebstrap-{{ DIST }}-apt.tar /tmp/debian-chroot.tar \
|
cmp ./cache/mmdebstrap-{{ DIST }}-apt.tar /tmp/debian-chroot.tar \
|
||||||
|| diffoscope ./cache/mmdebstrap-{{ DIST }}-apt.tar /tmp/debian-chroot.tar
|
|| diffoscope ./cache/mmdebstrap-{{ DIST }}-apt.tar /tmp/debian-chroot.tar
|
||||||
|
|
Loading…
Reference in a new issue