mirror of
https://github.com/systemd/systemd.git
synced 2024-11-02 02:21:44 +03:00
17 lines
350 B
Bash
17 lines
350 B
Bash
|
#!/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
|