mirror of
https://github.com/systemd/systemd.git
synced 2025-01-26 14:04:03 +03:00
61961e693d
A simple test case for issue #27106. Resolves: #27139
14 lines
486 B
Desktop File
14 lines
486 B
Desktop File
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
[Unit]
|
|
Description=TEST-01-BASIC
|
|
# Order the test unit after systemd-update-utmp-runlevel.service, since
|
|
# the service doesn't play well with daemon-reexec
|
|
# See: https://github.com/systemd/systemd/issues/27167
|
|
After=multi-user.target systemd-update-utmp-runlevel.service
|
|
Wants=systemd-resolved.service systemd-networkd.service
|
|
|
|
[Service]
|
|
ExecStartPre=rm -f /failed /testok
|
|
ExecStart=/usr/lib/systemd/tests/testdata/units/%N.sh
|
|
Type=oneshot
|