2020-03-04 12:35:06 +03:00
#!/usr/bin/env bash
2017-08-07 22:09:21 +03:00
set -e
2016-05-03 12:43:22 +03:00
TEST_DESCRIPTION = "https://github.com/systemd/systemd/issues/3166"
2017-08-04 15:34:14 +03:00
TEST_NO_NSPAWN = 1
2016-05-03 12:43:22 +03:00
. $TEST_BASE_DIR /test-functions
test_setup( ) {
2019-07-12 18:47:26 +03:00
create_empty_image_rootdir
2016-05-03 12:43:22 +03:00
# Create what will eventually be our root filesystem onto an overlay
(
LOG_LEVEL = 5
eval $( udevadm info --export --query= env --name= ${ LOOPDEV } p2)
setup_basic_environment
2019-10-08 10:10:12 +03:00
mask_supporting_services
2016-05-03 12:43:22 +03:00
dracut_install false touch
# setup the testsuite service
cat >$initdir /etc/systemd/system/testsuite.service <<EOF
[ Unit]
Description = Testsuite service
[ Service]
ExecStart = /test-fail-on-restart.sh
Type = oneshot
EOF
cat >$initdir /etc/systemd/system/fail-on-restart.service <<EOF
[ Unit]
Description = Fail on restart
2019-04-01 15:26:26 +03:00
StartLimitIntervalSec = 1m
StartLimitBurst = 3
2016-05-03 12:43:22 +03:00
[ Service]
Type = simple
ExecStart = /bin/false
Restart = always
EOF
cat >$initdir /test-fail-on-restart.sh <<'EOF'
2020-03-04 12:35:06 +03:00
#!/usr/bin/env bash
set -x
2016-05-03 12:43:22 +03:00
systemctl start fail-on-restart.service
active_state = $( systemctl show --property ActiveState fail-on-restart.service)
while [ [ " $active_state " = = "ActiveState=activating" || " $active_state " = = "ActiveState=active" ] ] ; do
sleep 1
active_state = $( systemctl show --property ActiveState fail-on-restart.service)
done
systemctl is-failed fail-on-restart.service || exit 1
touch /testok
EOF
chmod 0755 $initdir /test-fail-on-restart.sh
setup_testsuite
2019-07-08 22:11:32 +03:00
)
2016-05-03 12:43:22 +03:00
}
do_test " $@ "