mirror of
https://github.com/systemd/systemd.git
synced 2025-03-11 20:58:27 +03:00
In general, it's better to avoid a negation. And "!" is special, because it is used for history expansion, i.e. the same command would behave differently if pasted on the command line. Inspired by 4a899c5a239eb50df3f596af4ff145f4a2d33f23.
7 lines
239 B
Desktop File
7 lines
239 B
Desktop File
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
[Service]
|
|
RuntimeMaxSec=5
|
|
Type=notify
|
|
RemainAfterExit=yes
|
|
ExecStart=/bin/sh -c 'systemd-notify --ready; until grep -q -F MARKER_RUNTIME /tmp/testfile-marker-runtime; do sleep 0.1; done; exit 0'
|