]> git.ipfire.org Git - thirdparty/systemd.git/blob - test/TEST-23-TYPE-EXEC/test.sh
scripts: use 4 space indentation
[thirdparty/systemd.git] / test / TEST-23-TYPE-EXEC / test.sh
1 #!/bin/bash
2 set -e
3 TEST_DESCRIPTION="test Type=exec"
4
5 . $TEST_BASE_DIR/test-functions
6
7 test_setup() {
8 create_empty_image
9 mkdir -p $TESTDIR/root
10 mount ${LOOPDEV}p1 $TESTDIR/root
11
12 (
13 LOG_LEVEL=5
14 eval $(udevadm info --export --query=env --name=${LOOPDEV}p2)
15
16 setup_basic_environment
17
18 # mask some services that we do not want to run in these tests
19 ln -fs /dev/null $initdir/etc/systemd/system/systemd-hwdb-update.service
20 ln -fs /dev/null $initdir/etc/systemd/system/systemd-journal-catalog-update.service
21 ln -fs /dev/null $initdir/etc/systemd/system/systemd-networkd.service
22 ln -fs /dev/null $initdir/etc/systemd/system/systemd-networkd.socket
23 ln -fs /dev/null $initdir/etc/systemd/system/systemd-resolved.service
24 ln -fs /dev/null $initdir/etc/systemd/system/systemd-machined.service
25
26 # setup the testsuite service
27 cat >$initdir/etc/systemd/system/testsuite.service <<EOF
28 [Unit]
29 Description=Testsuite service
30
31 [Service]
32 ExecStart=/testsuite.sh
33 Type=oneshot
34 StandardOutput=tty
35 StandardError=tty
36 NotifyAccess=all
37 EOF
38 cp testsuite.sh $initdir/
39
40 setup_testsuite
41 ) || return 1
42 setup_nspawn_root
43
44 ddebug "umount $TESTDIR/root"
45 umount $TESTDIR/root
46 }
47
48 do_test "$@"