mirror of
https://git.proxmox.com/git/systemd
synced 2025-12-26 13:52:12 +00:00
They are mostly testing the robustness of the various daemons: - starting with or without plymouth - surviving kill of fsck, systemd-fsckd, systemd-fsck, plymouth It will be possible to extend it later on with Control+C tests on plymouth and eventually checking the protocol output. LP: #1427312
10 lines
137 B
Bash
Executable File
10 lines
137 B
Bash
Executable File
#!/bin/sh
|
|
# loop until we can kill the process given in arg
|
|
|
|
while :
|
|
do
|
|
/usr/bin/pkill -x $*
|
|
[ $? -eq 0 ] && break
|
|
sleep 1
|
|
done
|