mirror of
https://github.com/morgan9e/systemd
synced 2026-04-14 00:14:32 +09:00
We passes log level through kernel command line. It is not necessary to set to debug level at the beginning, and set to info at the end. This is important when a test has several subtests. If a subtest sets log level to info at the end, then subsequent tests may not generate any useful logs.
58 lines
1.4 KiB
Bash
Executable File
58 lines
1.4 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
set -eux
|
|
set -o pipefail
|
|
|
|
# Test ExecReload= (PR #13098)
|
|
|
|
export SYSTEMD_PAGER=
|
|
SERVICE_PATH="$(mktemp /etc/systemd/system/execreloadXXX.service)"
|
|
SERVICE_NAME="${SERVICE_PATH##*/}"
|
|
|
|
echo "[#1] Failing ExecReload= should not kill the service"
|
|
cat >"$SERVICE_PATH" <<EOF
|
|
[Service]
|
|
ExecStart=sleep infinity
|
|
ExecReload=false
|
|
EOF
|
|
|
|
systemctl daemon-reload
|
|
systemctl start "$SERVICE_NAME"
|
|
systemctl status "$SERVICE_NAME"
|
|
# The reload SHOULD fail but SHOULD NOT affect the service state
|
|
(! systemctl reload "$SERVICE_NAME")
|
|
systemctl status "$SERVICE_NAME"
|
|
systemctl stop "$SERVICE_NAME"
|
|
|
|
|
|
echo "[#2] Failing ExecReload= should not kill the service (multiple ExecReload=)"
|
|
cat >"$SERVICE_PATH" <<EOF
|
|
[Service]
|
|
ExecStart=sleep infinity
|
|
ExecReload=true
|
|
ExecReload=false
|
|
ExecReload=true
|
|
EOF
|
|
|
|
systemctl daemon-reload
|
|
systemctl start "$SERVICE_NAME"
|
|
systemctl status "$SERVICE_NAME"
|
|
# The reload SHOULD fail but SHOULD NOT affect the service state
|
|
(! systemctl reload "$SERVICE_NAME")
|
|
systemctl status "$SERVICE_NAME"
|
|
systemctl stop "$SERVICE_NAME"
|
|
|
|
echo "[#3] Failing ExecReload=- should not affect reload's exit code"
|
|
cat >"$SERVICE_PATH" <<EOF
|
|
[Service]
|
|
ExecStart=sleep infinity
|
|
ExecReload=-false
|
|
EOF
|
|
|
|
systemctl daemon-reload
|
|
systemctl start "$SERVICE_NAME"
|
|
systemctl status "$SERVICE_NAME"
|
|
systemctl reload "$SERVICE_NAME"
|
|
systemctl status "$SERVICE_NAME"
|
|
systemctl stop "$SERVICE_NAME"
|