mirror of
https://github.com/morgan9e/systemd
synced 2026-04-15 00:47:10 +09:00
This partially reverts f9b186c21a.
The test case is unstable, and fills debugging logs after journald
is restarted.
8 lines
250 B
Bash
Executable File
8 lines
250 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
set -eux
|
|
set -o pipefail
|
|
|
|
systemd-run -v --wait echo wampfl | grep wampfl
|
|
systemd-run -v --service-type=notify bash -c 'echo brumfl ; systemd-notify --ready ; echo krass' | grep brumfl
|