mirror of
https://github.com/systemd/systemd-stable.git
synced 2025-02-05 21:57:27 +03:00
13 lines
344 B
Bash
13 lines
344 B
Bash
|
#!/usr/bin/env bash
|
||
|
set -ex
|
||
|
set -o pipefail
|
||
|
|
||
|
systemctl start testsuite-51-repro-1
|
||
|
systemctl start testsuite-51-repro-2
|
||
|
sleep 5 # wait a bit in case there are restarts so we can count them below
|
||
|
|
||
|
[[ "$(systemctl show testsuite-51-repro-1 -P NRestarts)" == "0" ]]
|
||
|
[[ "$(systemctl show testsuite-51-repro-2 -P NRestarts)" == "0" ]]
|
||
|
|
||
|
touch /testok
|