mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-24 16:10:02 -06:00
10 lines
120 B
Bash
10 lines
120 B
Bash
|
#!/bin/bash -eux
|
||
|
|
||
|
for i in $(seq 35)
|
||
|
do
|
||
|
systemctl is-active --quiet default.target && exit 0
|
||
|
sleep 5
|
||
|
done
|
||
|
|
||
|
exit 1
|