mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 17:51:22 +03:00
24aab7936c
it also ensures that rebooting once gets us back up. Yay!
19 lines
460 B
Bash
Executable File
19 lines
460 B
Bash
Executable File
#!/bin/bash
|
|
# -*- mode: shell-script; indent-tabs-mode: nil; sh-basic-offset: 4; -*-
|
|
# ex: ts=8 sw=4 sts=4 et filetype=sh
|
|
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
|