mirror of
https://github.com/morgan9e/systemd
synced 2026-04-15 00:47:10 +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.
10 lines
206 B
Bash
Executable File
10 lines
206 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
set -ex
|
|
set -o pipefail
|
|
|
|
systemctl enable test-honor-first-shutdown.service
|
|
systemctl start test-honor-first-shutdown.service
|
|
|
|
touch /testok
|