2016-05-02 11:57:19 +03:00
#!/bin/bash
2017-08-07 22:09:21 +03:00
set -e
2016-05-02 11:57:19 +03:00
TEST_DESCRIPTION = "https://github.com/systemd/systemd/issues/2467"
. $TEST_BASE_DIR /test-functions
test_setup( ) {
create_empty_image
mkdir -p $TESTDIR /root
mount ${ LOOPDEV } p1 $TESTDIR /root
# 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-01-29 21:33:15 +03:00
dracut_install true rm socat
2016-05-02 11:57:19 +03:00
# setup the testsuite service
cat >$initdir /etc/systemd/system/testsuite.service <<'EOF'
[ Unit]
Description = Testsuite service
[ Service]
Type = oneshot
2017-11-28 21:37:32 +03:00
StandardOutput = tty
StandardError = tty
2019-01-29 21:33:15 +03:00
ExecStart = /bin/sh -e -x -c 'rm -f /tmp/nonexistent; systemctl start test.socket; printf x > test.file; socat -t20 OPEN:test.file UNIX-CONNECT:/run/test.ctl; >/testok'
2016-05-02 11:57:19 +03:00
TimeoutStartSec = 10s
EOF
cat >$initdir /etc/systemd/system/test.socket <<'EOF'
[ Socket]
2019-01-29 21:33:15 +03:00
ListenStream = /run/test.ctl
2016-05-02 11:57:19 +03:00
EOF
cat > $initdir /etc/systemd/system/test.service <<'EOF'
[ Unit]
Requires = test.socket
ConditionPathExistsGlob = /tmp/nonexistent
[ Service]
ExecStart = /bin/true
EOF
setup_testsuite
) || return 1
2017-11-28 21:36:52 +03:00
setup_nspawn_root
2016-05-02 11:57:19 +03:00
# mask some services that we do not want to run in these tests
ln -s /dev/null $initdir /etc/systemd/system/systemd-hwdb-update.service
ln -s /dev/null $initdir /etc/systemd/system/systemd-journal-catalog-update.service
ln -s /dev/null $initdir /etc/systemd/system/systemd-networkd.service
ln -s /dev/null $initdir /etc/systemd/system/systemd-networkd.socket
ln -s /dev/null $initdir /etc/systemd/system/systemd-resolved.service
ddebug " umount $TESTDIR /root "
umount $TESTDIR /root
}
do_test " $@ "