mirror of
https://github.com/systemd/systemd.git
synced 2024-11-06 08:26:52 +03:00
65c5f3d074
The if test for running the firstphase of the test should be negated so the firstphase is actually executed.
17 lines
352 B
Bash
Executable File
17 lines
352 B
Bash
Executable File
#!/bin/bash
|
|
set -ex
|
|
set -o pipefail
|
|
|
|
systemd-run --wait -p FailureAction=poweroff true
|
|
! systemd-run --wait -p SuccessAction=poweroff false
|
|
|
|
if ! test -f /firstphase ; then
|
|
echo OK > /firstphase
|
|
systemd-run --wait -p SuccessAction=reboot true
|
|
else
|
|
echo OK > /testok
|
|
systemd-run --wait -p FailureAction=poweroff false
|
|
fi
|
|
|
|
sleep infinity
|