mirror of
https://github.com/systemd/systemd.git
synced 2024-12-18 06:33:36 +08:00
1eeaa93de3
Just use ExecParam directly, as these are all internal to sd-exec now anyway. Avoids double close when execution fails after FDs are set up for inheritance and were already re-arranged. Fixes https://github.com/systemd/systemd/issues/30412
43 lines
1.3 KiB
Bash
Executable File
43 lines
1.3 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
set -e
|
|
|
|
TEST_DESCRIPTION="Tests for core PID1 functionality"
|
|
|
|
# for testing PrivateNetwork=yes
|
|
NSPAWN_ARGUMENTS="--capability=CAP_NET_ADMIN"
|
|
|
|
# shellcheck source=test/test-functions
|
|
. "${TEST_BASE_DIR:?}/test-functions"
|
|
|
|
test_append_files() {
|
|
local workspace="${1:?}"
|
|
|
|
# We might not be fast enough to hit the limit (20 triggers per 2 secs)
|
|
# in certain environments, i.e. when running without KVM or when collecting
|
|
# coverage. Let's help it a bit in such case.
|
|
if ! get_bool "$QEMU_KVM" || get_bool "$IS_BUILT_WITH_COVERAGE"; then
|
|
mkdir -p "$workspace/etc/systemd/system/issue2467.socket.d"
|
|
printf "[Socket]\nTriggerLimitIntervalSec=10\n" >"$workspace/etc/systemd/system/issue2467.socket.d/TriggerLimitInterval.conf"
|
|
fi
|
|
|
|
# Issue: https://github.com/systemd/systemd/issues/2730
|
|
mkdir -p "$workspace/etc/systemd/system/"
|
|
cat >"$workspace/etc/systemd/system/issue2730.mount" <<EOF
|
|
[Mount]
|
|
What=tmpfs
|
|
Where=/issue2730
|
|
Type=tmpfs
|
|
|
|
[Install]
|
|
WantedBy=local-fs.target
|
|
Alias=issue2730-alias.mount
|
|
EOF
|
|
"${SYSTEMCTL:?}" enable --root="$workspace" issue2730.mount
|
|
ln -svrf "$workspace/etc/systemd/system/issue2730.mount" "$workspace/etc/systemd/system/issue2730-alias.mount"
|
|
|
|
image_install logger socat
|
|
}
|
|
|
|
do_test "$@"
|