mirror of
https://git.proxmox.com/git/systemd
synced 2025-08-17 20:17:21 +00:00
7 lines
115 B
Bash
Executable File
7 lines
115 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
sleep infinity &
|
|
echo $! >/leakedtestpid
|
|
wait $!
|