mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 00:51:24 +03:00
12 lines
408 B
Bash
Executable File
12 lines
408 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -x
|
|
|
|
systemctl start fail-on-restart.service
|
|
active_state=$(systemctl show --value --property ActiveState fail-on-restart.service)
|
|
while [[ "$active_state" == "activating" || "$active_state" == "active" ]]; do
|
|
sleep 1
|
|
active_state=$(systemctl show --value --property ActiveState fail-on-restart.service)
|
|
done
|
|
systemctl is-failed fail-on-restart.service || exit 1
|
|
touch /testok
|