mirror of
https://github.com/systemd/systemd.git
synced 2024-11-24 10:43:35 +08:00
40f41f34d4
This reverts commit 12ab94a1e4
.
17 lines
634 B
Desktop File
17 lines
634 B
Desktop File
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
[Unit]
|
|
Description=TEST-10-ISSUE-2467
|
|
|
|
[Service]
|
|
ExecStartPre=rm -f /failed /testok
|
|
Type=oneshot
|
|
ExecStart=rm -f /tmp/nonexistent
|
|
ExecStart=systemctl start test10.socket
|
|
ExecStart=-nc -w20 -U /run/test.ctl
|
|
# TriggerLimitIntervalSec= by default is set to 2s. A "sleep 10" should give
|
|
# systemd enough time even on slower machines, to reach the trigger limit.
|
|
ExecStart=sleep 10
|
|
ExecStart=sh -x -c 'test "$(systemctl show test10.socket -P ActiveState)" = failed'
|
|
ExecStart=sh -x -c 'test "$(systemctl show test10.socket -P Result)" = trigger-limit-hit'
|
|
ExecStart=sh -x -c 'echo OK >/testok'
|